Support -L options in VC++ link.

This commit is contained in:
Dr. Stephen Henson 2010-01-20 14:04:44 +00:00
parent b3020393f2
commit a70e377fd8

View file

@ -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/)