aboutsummaryrefslogtreecommitdiff
path: root/libtool-ldflags
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2014-04-17 14:23:28 +0200
committerJakub Jelinek <jakub@gcc.gnu.org>2014-04-17 14:23:28 +0200
commitffe7f7a75f2e5709f2678d01bf1a92890304c346 (patch)
tree939f1ccdf6369001e5600ee2c4b597483c98bc23 /libtool-ldflags
parent79896351cbd1ba94a66b867694b335127ee72449 (diff)
downloadgcc-ffe7f7a75f2e5709f2678d01bf1a92890304c346.zip
gcc-ffe7f7a75f2e5709f2678d01bf1a92890304c346.tar.gz
gcc-ffe7f7a75f2e5709f2678d01bf1a92890304c346.tar.bz2
re PR sanitizer/56781 (boostrap-asan failure: fixincl fails to link (missing -lasan))
PR sanitizer/56781 * libtool-ldflags: Also prefix -static-lib*, -shared-lib* and -B* options with -Xcompiler. lto-plugin/ * Makefile.am (LTLDFLAGS, liblto_plugin_la_LINK): New variables. * Makefile.in: Regenerated. From-SVN: r209475
Diffstat (limited to 'libtool-ldflags')
-rwxr-xr-xlibtool-ldflags7
1 files changed, 4 insertions, 3 deletions
diff --git a/libtool-ldflags b/libtool-ldflags
index e32e37b..5de9e29 100755
--- a/libtool-ldflags
+++ b/libtool-ldflags
@@ -2,7 +2,7 @@
# Script to translate LDFLAGS into a form suitable for use with libtool.
-# Copyright (C) 2005 Free Software Foundation, Inc.
+# Copyright (C) 2005-2014 Free Software Foundation, Inc.
#
# This file is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -36,14 +36,15 @@ prev_arg=
for arg
do
case $arg in
- -f*|--*)
+ -f*|--*|-static-lib*|-shared-lib*|-B*)
# Libtool does not ascribe any special meaning options
# that begin with -f or with a double-dash. So, it will
# think these options are linker options, and prefix them
# with "-Wl,". Then, the compiler driver will ignore the
# options. So, we prefix these options with -Xcompiler to
# make clear to libtool that they are in fact compiler
- # options.
+ # options. Similarly for e.g. -static-libstdc++, or
+ # -B/some/path.
case $prev_arg in
-Xpreprocessor|-Xcompiler|-Xlinker)
# This option is already prefixed; don't prefix it again.