diff options
author | iains <iains@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-05-18 08:12:56 +0000 |
---|---|---|
committer | iains <iains@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-05-18 08:12:56 +0000 |
commit | f64b48e2ead18a7376ef387176e4f1711be71e92 (patch) | |
tree | 39b77ee32c3ee392fdb9b93500e805b045d06bf2 /configure.ac | |
parent | bcad6fc79144a08329848ae8649ccc2e14ecf3b7 (diff) | |
download | gcc-f64b48e2ead18a7376ef387176e4f1711be71e92.tar.gz |
add lto to powerpc-*darwin and enable for 32bit darwin
Steven Bosscher <steven@gcc.gnu.org>
ChangeLog:
* configure.ac (--enable-lto): All *-apple-darwin* now support LTO.
* configure: Regenerate.
gcc/ChangeLog:
* config.gcc (powerpc-*-darwin*, powerpc64-*-darwin*): Add
lto-macho as lto_binary_reader.
* darwin.c (darwin_asm_named_section): Do not add assembler comment
after .section directive; just print it before the directive instead.
M gcc/config.gcc
M gcc/config/darwin.c
M ChangeLog
M gcc/ChangeLog
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@159527 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 920457464e5..f78c5273084 100644 --- a/configure.ac +++ b/configure.ac @@ -1803,7 +1803,7 @@ fi],[if test x"$default_enable_lto" = x"yes" ; then # -flto it won't be needed until after installation anyway. case $target in *-cygwin*|*-mingw*) ;; - x86_64-apple-darwin*) ;; + *-apple-darwin*) ;; *) if test x"$enable_lto" = x"yes"; then AC_MSG_ERROR([LTO support is not enabled for this target.]) fi |