diff options
author | Richard Biener <rguenther@suse.de> | 2014-10-22 20:51:00 +0000 |
---|---|---|
committer | Tobias Burnus <burnus@gcc.gnu.org> | 2014-10-22 22:51:00 +0200 |
commit | d8857ac60365290666669f19e06226b4f5a40d88 (patch) | |
tree | 3db3c24df076a173edfd26549859370107bb6bfe /gcc/gcc.c | |
parent | 693b297b72309b6db6898a334c24b777c0c69831 (diff) | |
download | gcc-d8857ac60365290666669f19e06226b4f5a40d88.zip gcc-d8857ac60365290666669f19e06226b4f5a40d88.tar.gz gcc-d8857ac60365290666669f19e06226b4f5a40d88.tar.bz2 |
re PR lto/63603 (Linking with -fno-lto still invokes LTO)
2014-10-22 Richard Biener <rguenther@suse.de>
Tobias Burnus <burnus@net-b.de>
PR lto/63603
* gcc.c (LINK_COMMAND_SPEC): Add %{fno-lto}.
Co-Authored-By: Tobias Burnus <burnus@net-b.de>
From-SVN: r216566
Diffstat (limited to 'gcc/gcc.c')
-rw-r--r-- | gcc/gcc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -819,7 +819,7 @@ proper position among the other output files. */ %(linker) " \ LINK_PLUGIN_SPEC \ "%{flto|flto=*:%<fcompare-debug*} \ - %{flto} %{flto=*} %l " LINK_PIE_SPEC \ + %{flto} %{fno-lto} %{flto=*} %l " LINK_PIE_SPEC \ "%{fuse-ld=*:-fuse-ld=%*} " LINK_COMPRESS_DEBUG_SPEC \ "%X %{o*} %{e*} %{N} %{n} %{r}\ %{s} %{t} %{u*} %{z} %{Z} %{!nostdlib:%{!nostartfiles:%S}} " VTABLE_VERIFICATION_SPEC " \ |