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
4920d08e
Commit
4920d08e
authored
Oct 31, 2022
by
Jacek Caban
Committed by
Alexandre Julliard
Oct 31, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
makedep: Always use -mno-cygwin for extra test modules.
parent
f307d472
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
makedep.c
tools/makedep.c
+3
-2
No files found.
tools/makedep.c
View file @
4920d08e
...
...
@@ -3065,14 +3065,15 @@ static void output_source_in( struct makefile *make, struct incl_file *source, c
static
void
output_source_spec
(
struct
makefile
*
make
,
struct
incl_file
*
source
,
const
char
*
obj
)
{
struct
strarray
imports
=
get_expanded_file_local_var
(
make
,
obj
,
"IMPORTS"
);
struct
strarray
dll_flags
=
get_expanded_file_local_var
(
make
,
obj
,
"EXTRADLLFLAGS"
)
;
struct
strarray
dll_flags
=
empty_strarray
;
struct
strarray
all_libs
=
empty_strarray
,
dep_libs
=
empty_strarray
;
struct
strarray
default_imports
=
empty_strarray
;
const
char
*
dll_name
,
*
obj_name
,
*
res_name
,
*
output_file
,
*
debug_file
;
unsigned
int
arch
=
make
->
is_cross
?
1
:
0
;
if
(
!
imports
.
count
)
imports
=
make
->
imports
;
if
(
!
dll_flags
.
count
)
dll_flags
=
make
->
extradllflags
;
strarray_addall
(
&
dll_flags
,
make
->
extradllflags
);
strarray_addall
(
&
dll_flags
,
get_expanded_file_local_var
(
make
,
obj
,
"EXTRADLLFLAGS"
));
if
(
!
strarray_exists
(
&
dll_flags
,
"-nodefaultlibs"
))
default_imports
=
get_default_imports
(
make
,
imports
);
strarray_addall
(
&
all_libs
,
add_import_libs
(
make
,
&
dep_libs
,
imports
,
IMPORT_TYPE_DIRECT
,
arch
)
);
...
...
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