mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 09:50:52 +00:00
winegcc: Allow -R and -z linker options.
This commit is contained in:
parent
3baf4dbe76
commit
61f8c34f1e
1 changed files with 4 additions and 2 deletions
|
@ -724,7 +724,9 @@ static int is_linker_arg(const char* arg)
|
|||
|
||||
switch (arg[1])
|
||||
{
|
||||
case 'l':
|
||||
case 'R':
|
||||
case 'z':
|
||||
case 'l':
|
||||
case 'u':
|
||||
return 1;
|
||||
case 'W':
|
||||
|
@ -828,7 +830,7 @@ int main(int argc, char **argv)
|
|||
case 'x': case 'o': case 'D': case 'U':
|
||||
case 'I': case 'A': case 'l': case 'u':
|
||||
case 'b': case 'V': case 'G': case 'L':
|
||||
case 'B':
|
||||
case 'B': case 'R': case 'z':
|
||||
if (argv[i][2]) option_arg = &argv[i][2];
|
||||
else next_is_arg = 1;
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue