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
1cb75101
Commit
1cb75101
authored
Apr 04, 2006
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winegcc: Don't use the library full name for .so libs.
parent
1e3b6b18
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
3 deletions
+1
-3
winegcc.c
tools/winegcc/winegcc.c
+1
-3
No files found.
tools/winegcc/winegcc.c
View file @
1cb75101
...
...
@@ -401,8 +401,6 @@ static void add_library( strarray *lib_dirs, strarray *files, const char *librar
}
break
;
case
file_so
:
strarray_add
(
files
,
strmake
(
"-s%s"
,
fullname
));
break
;
default:
/* keep it anyway, the linker may know what to do with it */
strarray_add
(
files
,
strmake
(
"-l%s"
,
library
));
...
...
@@ -628,9 +626,9 @@ static void build(struct options* opts)
switch
(
files
->
base
[
j
][
1
])
{
case
'l'
:
case
's'
:
strarray_add
(
link_args
,
strmake
(
"-l%s"
,
name
));
break
;
case
's'
:
case
'a'
:
case
'o'
:
strarray_add
(
link_args
,
name
);
...
...
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