Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
40a76a21
Commit
40a76a21
authored
May 16, 2019
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
makefiles: Don't depend on cross import library if not necessary.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
6c41cc61
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
7 deletions
+16
-7
makedep.c
tools/makedep.c
+16
-7
No files found.
tools/makedep.c
View file @
40a76a21
...
...
@@ -3553,9 +3553,13 @@ static void output_subdirs( struct makefile *make )
}
else
{
strarray_add
(
&
build_deps
,
strmake
(
"%s.a"
,
importlib_path
));
if
(
needs_delay_lib
(
submake
))
output
(
"%s.delay.a "
,
importlib_path
);
if
(
needs_delay_lib
(
submake
))
{
output
(
"%s.delay.a "
,
importlib_path
);
strarray_add
(
&
build_deps
,
strmake
(
"%s.delay.a"
,
importlib_path
));
}
output
(
"%s.a: %s"
,
importlib_path
,
spec_file
);
strarray_add
(
&
build_deps
,
strmake
(
"%s.a"
,
importlib_path
));
}
output_filename
(
tools_path
(
make
,
"winebuild"
));
output
(
"
\n
"
);
...
...
@@ -3568,8 +3572,16 @@ static void output_subdirs( struct makefile *make )
output
(
"
\n
"
);
if
(
crosstarget
&&
(
needs_cross_lib
(
submake
)
||
needs_delay_lib
(
submake
)))
{
if
(
needs_cross_lib
(
submake
))
output_filename
(
strmake
(
"%s.cross.a"
,
importlib_path
));
if
(
needs_delay_lib
(
submake
))
output_filename
(
strmake
(
"%s.delay.a"
,
importlib_path
));
if
(
needs_cross_lib
(
submake
))
{
output_filename
(
strmake
(
"%s.cross.a"
,
importlib_path
));
strarray_add
(
&
build_deps
,
strmake
(
"%s.cross.a"
,
importlib_path
));
}
if
(
needs_delay_lib
(
submake
))
{
output_filename
(
strmake
(
"%s.delay.a"
,
importlib_path
));
strarray_add
(
&
build_deps
,
strmake
(
"%s.delay.a"
,
importlib_path
));
}
output
(
": %s"
,
spec_file
);
output_filename
(
tools_path
(
make
,
"winebuild"
));
output
(
"
\n
"
);
...
...
@@ -3578,10 +3590,7 @@ static void output_subdirs( struct makefile *make )
output_filename
(
"--export"
);
output_filename
(
spec_file
);
output
(
"
\n
"
);
strarray_add
(
&
build_deps
,
strmake
(
"%s.cross.a"
,
importlib_path
));
}
if
(
needs_delay_lib
(
submake
))
strarray_add
(
&
build_deps
,
strmake
(
"%s.delay.a"
,
importlib_path
));
}
strarray_addall
(
&
symlinks
,
output_importlib_symlinks
(
make
,
submake
));
}
...
...
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