aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorPaolo Bonzini <bonzini@gnu.org>2006-12-19 11:28:35 +0000
committerPaolo Bonzini <bonzini@gcc.gnu.org>2006-12-19 11:28:35 +0000
commit400ebff4948b6c5dfdb5a637a7b2877dacd57a1c (patch)
treebedda5029db8807ea842949ae9533ebd70d6ca49 /configure
parent8efea775498b72272831867e0ae0b5dbc9750ea8 (diff)
downloadgcc-400ebff4948b6c5dfdb5a637a7b2877dacd57a1c.zip
gcc-400ebff4948b6c5dfdb5a637a7b2877dacd57a1c.tar.gz
gcc-400ebff4948b6c5dfdb5a637a7b2877dacd57a1c.tar.bz2
configure.in: Remove "$build" case for powerpc-*-darwin* since it only affects bootstrap and...
2006-12-19 Paolo Bonzini <bonzini@gnu.org> * configure.in: Remove "$build" case for powerpc-*-darwin* since it only affects bootstrap and could be tested on "$host" as well. * configure: Regenerate. * config/mh-ppc-darwin: Add to the stage1 cflags here. From-SVN: r120049
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure13
1 files changed, 3 insertions, 10 deletions
diff --git a/configure b/configure
index 37850ce..3f69c1d 100755
--- a/configure
+++ b/configure
@@ -7299,13 +7299,6 @@ case $build in
yes) stage1_cflags="-g -Wa,-J" ;;
*) stage1_cflags="-g -J" ;;
esac ;;
- powerpc-*-darwin*)
- # The spiffy cpp-precomp chokes on some legitimate constructs in GCC
- # sources; use -no-cpp-precomp to get to GNU cpp.
- # Apple's GCC has bugs in designated initializer handling, so disable
- # that too.
- stage1_cflags="-g -no-cpp-precomp -DHAVE_DESIGNATED_INITIALIZERS=0"
- ;;
esac
# This is aimed to mimic bootstrap with a non-GCC compiler to catch problems.
@@ -7315,16 +7308,16 @@ if test "$GCC" = yes; then
# Pass -fkeep-inline-functions for stage 1 if the GCC version supports it.
CFLAGS="$CFLAGS -fkeep-inline-functions"
echo $ac_n "checking whether -fkeep-inline-functions is supported""... $ac_c" 1>&6
-echo "configure:7319: checking whether -fkeep-inline-functions is supported" >&5
+echo "configure:7312: checking whether -fkeep-inline-functions is supported" >&5
cat > conftest.$ac_ext <<EOF
-#line 7321 "configure"
+#line 7314 "configure"
#include "confdefs.h"
int main() {
; return 0; }
EOF
-if { (eval echo configure:7328: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:7321: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
echo "$ac_t""yes" 1>&6; stage1_cflags="$stage1_cflags -fkeep-inline-functions"
else