From b394947518fb15887802fe3bc7f0a337c495d65d Mon Sep 17 00:00:00 2001 From: Anthony Green Date: Tue, 27 Mar 2018 05:11:52 -0400 Subject: [PATCH] Add -L and -l support --- msvcc.sh | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/msvcc.sh b/msvcc.sh index eef61c8f..616e67c3 100755 --- a/msvcc.sh +++ b/msvcc.sh @@ -156,6 +156,25 @@ do includes="$includes $1" shift 1 ;; + -L*) + path=`echo "$1" | sed 's/-L//'` + args+=("/LIBPATH:$path") + ;; + -l*) + IFS_save="$IFS" + IFS=\; + found= + for d in $LIB; do + d="$(echo $d | sed -e 's,\\,/,g')" + if [ -f "$d/lib${1#-l}.lib" ]; then + found="lib${1#-l}.lib" + break; + fi + done + IFS="$IFS_save" + args="$args ${found:-${1#-l}.lib}" + shift 1 + ;; -W|-Wextra) # TODO map extra warnings shift 1