]> xenbits.xensource.com Git - rumpuser-xen.git/commitdiff
ignore -lssp_nonshared in case the toolchain thinks we need it
authorAntti Kantee <pooka@iki.fi>
Sun, 4 Jan 2015 14:10:41 +0000 (14:10 +0000)
committerAntti Kantee <pooka@iki.fi>
Sun, 4 Jan 2015 14:10:41 +0000 (14:10 +0000)
fixes builds on at least alpine linux

app-tools/ld

index 737e9e4a31f6bc610a903053ec5a63aa29df34bd..1b9ecb0245c410bfcb5e30a6fab1681c9c2f322a 100755 (executable)
@@ -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")
                ;;