diff options
author | Andreas Tobler <a.tobler@schweiz.org> | 2009-10-08 05:09:54 +0000 |
---|---|---|
committer | Andreas Tobler <andreast@gcc.gnu.org> | 2009-10-08 07:09:54 +0200 |
commit | 4c93ed23858a4d0ed6a63f9a75fba798b048e8c3 (patch) | |
tree | 86074eb7612c3c7a1a8e312bc83756e689a9a34a | |
parent | 32a58b37ef404447ccc9f0856e03273644ffeebe (diff) | |
download | gcc-4c93ed23858a4d0ed6a63f9a75fba798b048e8c3.zip gcc-4c93ed23858a4d0ed6a63f9a75fba798b048e8c3.tar.gz gcc-4c93ed23858a4d0ed6a63f9a75fba798b048e8c3.tar.bz2 |
re PR bootstrap/37739 (bootstrap broken with core gcc > gcc-4.2.x)
2009-10-08 Andreas Tobler <a.tobler@schweiz.org>
PR bootstrap/37739
* config.host: Use config/x-cflags-O1 for powerpc FreeBSD.
From-SVN: r152550
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config.host | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 885532b..bf79d86 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2009-10-08 Andreas Tobler <a.tobler@schweiz.org> + + PR bootstrap/37739 + * config.host: Use config/x-cflags-O1 for powerpc FreeBSD. + 2009-10-07 Joseph Myers <joseph@codesourcery.com> PR c/41182 diff --git a/gcc/config.host b/gcc/config.host index 4affcb0..9738345 100644 --- a/gcc/config.host +++ b/gcc/config.host @@ -130,7 +130,7 @@ case ${host} in ;; esac case ${host} in - *-*-linux* ) + *-*-linux* | *-*-freebsd*) if test "${GCC}:${ac_cv_sizeof_long}" = yes:4; then # On powerpc*-*-linux* use -Wl,--relax to link cc1, # if ld is new enough, otherwise force -O1 in CFLAGS. |