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
a041075c
Commit
a041075c
authored
Dec 02, 2021
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
makefiles: Support per-platform values for EXTRADLLFLAGS.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
d10410ea
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
0 deletions
+7
-0
Makefile.in
dlls/ntdll/Makefile.in
+1
-0
makedep.c
tools/makedep.c
+6
-0
No files found.
dlls/ntdll/Makefile.in
View file @
a041075c
...
...
@@ -7,6 +7,7 @@ EXTRAINCL = $(UNWIND_CFLAGS)
EXTRALIBS
=
$(IOKIT_LIBS)
$(COREFOUNDATION_LIBS)
$(CORESERVICES_LIBS)
$(RT_LIBS)
$(PTHREAD_LIBS)
$(UNWIND_LIBS)
$(I386_LIBS)
$(PROCSTAT_LIBS)
EXTRADLLFLAGS
=
-nodefaultlibs
-Wl
,--image-base,0x7bc00000
x86_64_EXTRADLLFLAGS
=
-nodefaultlibs
-Wl
,--image-base,0x170000000
C_SRCS
=
\
actctx.c
\
...
...
tools/makedep.c
View file @
a041075c
...
...
@@ -4131,6 +4131,12 @@ static void load_sources( struct makefile *make )
if
(
make
->
extlib
)
make
->
staticlib
=
make
->
extlib
;
if
(
make
->
staticlib
)
make
->
module
=
make
->
staticlib
;
if
(
host_cpu
)
{
value
=
get_expanded_file_local_var
(
make
,
host_cpu
,
"EXTRADLLFLAGS"
);
if
(
value
.
count
)
make
->
extradllflags
=
value
;
}
make
->
disabled
=
make
->
obj_dir
&&
strarray_exists
(
&
disabled_dirs
,
make
->
obj_dir
);
make
->
is_win16
=
strarray_exists
(
&
make
->
extradllflags
,
"-m16"
);
make
->
use_msvcrt
=
(
make
->
module
||
make
->
testdll
||
make
->
is_win16
)
&&
...
...
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