Support -L options in VC++ link.
This commit is contained in:
parent
b3020393f2
commit
a70e377fd8
1 changed files with 4 additions and 0 deletions
|
@ -13,6 +13,10 @@ $rm='del /Q';
|
|||
|
||||
$zlib_lib="zlib1.lib";
|
||||
|
||||
# Santize -L options for ms link
|
||||
$l_flags =~ s/-L("\[^"]+")/\/libpath:$1/g;
|
||||
$l_flags =~ s/-L(\S+)/\/libpath:$1/g;
|
||||
|
||||
# C compiler stuff
|
||||
$cc='cl';
|
||||
if ($FLAVOR =~ /WIN64/)
|
||||
|
|
Loading…
Reference in a new issue