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
7571fa87
Commit
7571fa87
authored
Aug 24, 2020
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
makefiles: Don't implicitly import the module itself when -nodefaultlibs is used.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
33be7790
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
makedep.c
tools/makedep.c
+5
-1
No files found.
tools/makedep.c
View file @
7571fa87
...
...
@@ -2212,7 +2212,11 @@ static struct strarray add_import_libs( const struct makefile *make, struct stra
const
char
*
lib
=
NULL
;
/* skip module's own importlib, its object files will be linked directly */
if
(
make
->
importlib
&&
!
is_unix
&&
!
strcmp
(
make
->
importlib
,
imports
.
str
[
i
]
))
continue
;
if
(
make
->
importlib
&&
!
strcmp
(
make
->
importlib
,
imports
.
str
[
i
]
))
{
if
(
!
is_unix
)
continue
;
if
(
strarray_exists
(
&
make
->
extradllflags
,
"-nodefaultlibs"
))
continue
;
}
for
(
j
=
0
;
j
<
top_makefile
->
subdirs
.
count
;
j
++
)
{
...
...
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