summaryrefslogtreecommitdiff
path: root/gcc/Makefile.in
diff options
context:
space:
mode:
authoriverbin <iverbin@138bc75d-0d04-0410-961f-82ee72b054a4>2015-01-14 15:51:37 +0000
committeriverbin <iverbin@138bc75d-0d04-0410-961f-82ee72b054a4>2015-01-14 15:51:37 +0000
commit04270ae2c00676c2a4945076793025d56b3bccf8 (patch)
tree6b101efdd6165e22f408efa7b143a6526eedc6fa /gcc/Makefile.in
parent9d65fe51dc4c9e12c7ce6456201d06f79e316d78 (diff)
downloadgcc-04270ae2c00676c2a4945076793025d56b3bccf8.tar.gz
gcc/
* Makefile.in (site.exp): Do not set ENABLE_LTO. gcc/testsuite/ * lib/target-supports.exp (check_effective_target_lto): Check for -flto option support instead of ENABLE_LTO from Makefile. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@219606 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/Makefile.in')
-rw-r--r--gcc/Makefile.in3
1 files changed, 0 insertions, 3 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in
index 5f9261fbb5e..44a42143aa0 100644
--- a/gcc/Makefile.in
+++ b/gcc/Makefile.in
@@ -3606,9 +3606,6 @@ site.exp: ./config.status Makefile
echo "set PLUGINCFLAGS \"$(PLUGINCFLAGS)\"" >> ./site.tmp; \
echo "set GMPINC \"$(GMPINC)\"" >> ./site.tmp; \
fi
- @if test "@enable_lto@" = "yes" ; then \
- echo "set ENABLE_LTO 1" >> ./site.tmp; \
- fi
# If newlib has been configured, we need to pass -B to gcc so it can find
# newlib's crt0.o if it exists. This will cause a "path prefix not used"
# message if it doesn't, but the testsuite is supposed to ignore the message -