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
2de0c163
Commit
2de0c163
authored
Aug 18, 2009
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winegcc: Add support for building fake modules.
parent
f7f50d12
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
2 deletions
+15
-2
winegcc.c
tools/winegcc/winegcc.c
+15
-2
No files found.
tools/winegcc/winegcc.c
View file @
2de0c163
...
...
@@ -556,6 +556,7 @@ static void build(struct options* opts)
const
char
*
spec_o_name
;
const
char
*
output_name
,
*
spec_file
,
*
lang
;
int
generate_app_loader
=
1
;
int
fake_module
=
0
;
unsigned
int
j
;
/* NOTE: for the files array we'll use the following convention:
...
...
@@ -581,6 +582,8 @@ static void build(struct options* opts)
if
(
opts
->
shared
||
strendswith
(
output_file
,
".so"
))
generate_app_loader
=
0
;
if
(
strendswith
(
output_file
,
".fake"
))
fake_module
=
1
;
/* normalize the filename a bit: strip .so, ensure it has proper ext */
if
(
strendswith
(
output_file
,
".so"
))
output_file
[
strlen
(
output_file
)
-
3
]
=
0
;
...
...
@@ -802,8 +805,17 @@ static void build(struct options* opts)
strarray_add
(
spec_args
,
strmake
(
"-m%u"
,
8
*
opts
->
force_pointer_size
));
strarray_addall
(
spec_args
,
strarray_fromstring
(
DLLFLAGS
,
" "
));
strarray_add
(
spec_args
,
opts
->
shared
?
"--dll"
:
"--exe"
);
strarray_add
(
spec_args
,
"-o"
);
strarray_add
(
spec_args
,
spec_o_name
);
if
(
fake_module
)
{
strarray_add
(
spec_args
,
"--fake-module"
);
strarray_add
(
spec_args
,
"-o"
);
strarray_add
(
spec_args
,
output_file
);
}
else
{
strarray_add
(
spec_args
,
"-o"
);
strarray_add
(
spec_args
,
spec_o_name
);
}
if
(
spec_file
)
{
strarray_add
(
spec_args
,
"-E"
);
...
...
@@ -850,6 +862,7 @@ static void build(struct options* opts)
spawn
(
opts
->
prefix
,
spec_args
,
0
);
strarray_free
(
spec_args
);
if
(
fake_module
)
return
;
/* nothing else to do */
/* link everything together now */
strarray_addall
(
link_args
,
get_translator
(
opts
));
...
...
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