diff options
author | Eric Christopher <echristo@apple.com> | 2010-03-02 05:06:54 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2010-03-02 05:06:54 +0000 |
commit | d075026d7c1396dafe9375a0fca0792c72da69d2 (patch) | |
tree | 1153e756ec11b6130900f7c22ff6c41d918c1e5a /configure | |
parent | 70b967f60ef497a35bba54053e95a014d4cb6498 (diff) | |
download | external_llvm-d075026d7c1396dafe9375a0fca0792c72da69d2.zip external_llvm-d075026d7c1396dafe9375a0fca0792c72da69d2.tar.gz external_llvm-d075026d7c1396dafe9375a0fca0792c72da69d2.tar.bz2 |
Make sure we save CXXFLAGS before setting it as pedantic and regenerate
configure.
Fixes PR6388.
Patch by Yann Droneaud!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97548 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -16544,6 +16544,7 @@ ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu + ac_save_CXXFLAGS=$CXXFLAGS CXXFLAGS=-pedantic if test "$cross_compiling" = yes; then ac_cv_huge_val_sanity=yes @@ -16596,6 +16597,7 @@ rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$a fi + CXXFLAGS=$ac_save_CXXFLAGS ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' |