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
3c235e05
Commit
3c235e05
authored
Dec 16, 2022
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winegcc: Check for Mingw-style .dll.a import libraries.
Wine-Bug:
https://bugs.winehq.org/show_bug.cgi?id=53918
parent
cb86bb92
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
utils.c
tools/winegcc/utils.c
+9
-1
No files found.
tools/winegcc/utils.c
View file @
3c235e05
...
@@ -138,7 +138,15 @@ static file_type guess_lib_type(struct target target, const char* dir,
...
@@ -138,7 +138,15 @@ static file_type guess_lib_type(struct target target, const char* dir,
if
((
*
file
=
try_lib_path
(
dir
,
""
,
prefix
,
library
,
".def"
,
file_def
)))
if
((
*
file
=
try_lib_path
(
dir
,
""
,
prefix
,
library
,
".def"
,
file_def
)))
return
file_dll
;
return
file_dll
;
}
}
else
arch_dir
=
get_arch_dir
(
target
);
else
{
arch_dir
=
get_arch_dir
(
target
);
if
(
!
strcmp
(
suffix
,
".a"
))
/* try Mingw-style .dll.a import lib */
{
if
((
*
file
=
try_lib_path
(
dir
,
arch_dir
,
prefix
,
library
,
".dll.a"
,
file_arh
)))
return
file_arh
;
}
}
/* static archives */
/* static archives */
if
((
*
file
=
try_lib_path
(
dir
,
arch_dir
,
prefix
,
library
,
suffix
,
file_arh
)))
if
((
*
file
=
try_lib_path
(
dir
,
arch_dir
,
prefix
,
library
,
suffix
,
file_arh
)))
...
...
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