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
92233bfa
Commit
92233bfa
authored
May 02, 2019
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
makefiles: Support delay imports for PE builds.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
d6248830
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
61 additions
and
22 deletions
+61
-22
makedep.c
tools/makedep.c
+57
-20
import.c
tools/winebuild/import.c
+2
-1
winebuild.man.in
tools/winebuild/winebuild.man.in
+2
-1
No files found.
tools/makedep.c
View file @
92233bfa
This diff is collapsed.
Click to expand it.
tools/winebuild/import.c
View file @
92233bfa
...
...
@@ -1386,7 +1386,8 @@ static void build_windows_import_lib( DLLSPEC *spec )
m_flag
=
NULL
;
break
;
}
strarray_add
(
&
args
,
"-k"
,
"-l"
,
output_file_name
,
"-d"
,
def_file
,
NULL
);
strarray_add
(
&
args
,
"-k"
,
strendswith
(
output_file_name
,
".delay.a"
)
?
"-y"
:
"-l"
,
output_file_name
,
"-d"
,
def_file
,
NULL
);
if
(
m_flag
)
strarray_add
(
&
args
,
"-m"
,
m_flag
,
as_flags
,
NULL
);
spawn
(
args
);
...
...
tools/winebuild/winebuild.man.in
View file @
92233bfa
...
...
@@ -48,7 +48,8 @@ Build a .def file from a spec file. The .spec file is specified via the
.TP
.BI \--implib
Build a .a import library from a spec file. The .spec file is
specified via the \fB-E\fR option.
specified via the \fB-E\fR option. If the output library name ends
in .delay.a, a delayed import library is built.
.TP
.B \--resources
Generate a .o file containing all the input resources. This is useful
...
...
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