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
a592c1ed
Commit
a592c1ed
authored
Feb 11, 2020
by
Jacek Caban
Committed by
Alexandre Julliard
Feb 11, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
makedep: Use -mno-cygwin for linking modules with no sources.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
215c1718
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
makedep.c
tools/makedep.c
+7
-1
No files found.
tools/makedep.c
View file @
a592c1ed
...
...
@@ -4253,10 +4253,16 @@ static void load_sources( struct makefile *make )
add_generated_sources
(
make
);
if
(
!
make
->
use_msvcrt
&&
!
has_object_file
(
make
))
{
strarray_add
(
&
make
->
extradllflags
,
"-mno-cygwin"
);
make
->
use_msvcrt
=
1
;
}
LIST_FOR_EACH_ENTRY
(
file
,
&
make
->
includes
,
struct
incl_file
,
entry
)
parse_file
(
make
,
file
,
0
);
LIST_FOR_EACH_ENTRY
(
file
,
&
make
->
sources
,
struct
incl_file
,
entry
)
get_dependencies
(
file
,
file
);
if
(
crosstarget
)
make
->
is_cross
=
(
make
->
testdll
||
make
->
use_msvcrt
||
!
has_object_file
(
make
))
;
make
->
is_cross
=
crosstarget
&&
make
->
use_msvcrt
;
if
(
make
->
is_cross
)
{
...
...
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