| commit | f318bb63c5dc623d5a69ffc4a59a330050cac567 | [log] [tgz] |
|---|---|---|
| author | Anthony Green <green@moxielogic.com> | Tue Mar 27 08:25:26 2018 -0400 |
| committer | Anthony Green <green@moxielogic.com> | Tue Mar 27 08:25:26 2018 -0400 |
| tree | d9b9e5db832a425955c3928cea0f96fea9b5a679 | |
| parent | 4f0c9cb39b7599312729278380ce63247bca226b [diff] |
Fix library path handling
diff --git a/msvcc.sh b/msvcc.sh index 50e80fe..bdb1256 100755 --- a/msvcc.sh +++ b/msvcc.sh
@@ -158,11 +158,16 @@ 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=\;