From: Antti Kantee Date: Sun, 4 Jan 2015 14:10:41 +0000 (+0000) Subject: ignore -lssp_nonshared in case the toolchain thinks we need it X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=21a3f2f128032fa5450f5693c3d00d82fc693123;p=rumpuser-xen.git ignore -lssp_nonshared in case the toolchain thinks we need it fixes builds on at least alpine linux --- diff --git a/app-tools/ld b/app-tools/ld index 737e9e4..1b9ecb0 100755 --- a/app-tools/ld +++ b/app-tools/ld @@ -12,6 +12,9 @@ unset march while [ $# != 0 ]; do a=$1; shift case "$a" in + # ignore lib(s) which may be insisted upon by the toolchain + -lssp_nonshared) + ;; [^-]*|-L*|-l*|--whole-archive|--no-whole-archive|--start-group|--end-group) outargs+=("$a") ;;