Fix library path handling

This commit is contained in:
Anthony Green
2018-03-27 08:25:26 -04:00
parent 4f0c9cb39b
commit f318bb63c5

View File

@@ -158,11 +158,16 @@ do
includes="$includes -I$p"
shift 1
;;
-L)
p=$(cygpath -m $2)
args="$args /LIBPATH:$p"
shift 2
;;
-L*)
path=`echo "$1" | sed 's/-L//'`
args+=("/LIBPATH:$path")
shift 1
;;
p=$(cygpath -m ${1#-L})
args="$args /LIBPATH:$p"
shift 1
;;
-l*)
IFS_save="$IFS"
IFS=\;