Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
195356c0
Commit
195356c0
authored
Dec 06, 2007
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winebuild: Also optimize out imports that are only used for forwards.
parent
08611417
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
import.c
tools/winebuild/import.c
+3
-2
No files found.
tools/winebuild/import.c
View file @
195356c0
...
...
@@ -617,10 +617,11 @@ int resolve_imports( DLLSPEC *spec )
}
}
}
if
(
!
removed
&&
check_unused
(
imp
,
spec
)
)
if
(
!
removed
)
{
/* the dll is not used, get rid of it */
warning
(
"winebuild: %s imported but no symbols used
\n
"
,
imp
->
spec
->
file_name
);
if
(
check_unused
(
imp
,
spec
))
warning
(
"winebuild: %s imported but no symbols used
\n
"
,
imp
->
spec
->
file_name
);
remove_import_dll
(
i
);
i
--
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment