[test-suite] r176238 - Change 252.eon and 447.dealII to explicitly build with libstdc++.
Bob Wilson
bob.wilson at apple.com
Wed Feb 27 23:57:20 PST 2013
Author: bwilson
Date: Thu Feb 28 01:57:20 2013
New Revision: 176238
URL: http://llvm.org/viewvc/llvm-project?rev=176238&view=rev
Log:
Change 252.eon and 447.dealII to explicitly build with libstdc++.
They both have issues when using libc++.
Modified:
test-suite/trunk/External/SPEC/CFP2006/447.dealII/Makefile
test-suite/trunk/External/SPEC/CINT2000/252.eon/Makefile
Modified: test-suite/trunk/External/SPEC/CFP2006/447.dealII/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/External/SPEC/CFP2006/447.dealII/Makefile?rev=176238&r1=176237&r2=176238&view=diff
==============================================================================
--- test-suite/trunk/External/SPEC/CFP2006/447.dealII/Makefile (original)
+++ test-suite/trunk/External/SPEC/CFP2006/447.dealII/Makefile Thu Feb 28 01:57:20 2013
@@ -16,6 +16,7 @@ CPPFLAGS += \
-Ddeal_II_dimension=3 \
-DBOOST_DISABLE_THREADS \
-I$(SPEC_BENCH_DIR)/src/include
+CXXFLAGS += -stdlib=libstdc++
STDOUT_FILENAME := log
Modified: test-suite/trunk/External/SPEC/CINT2000/252.eon/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/External/SPEC/CINT2000/252.eon/Makefile?rev=176238&r1=176237&r2=176238&view=diff
==============================================================================
--- test-suite/trunk/External/SPEC/CINT2000/252.eon/Makefile (original)
+++ test-suite/trunk/External/SPEC/CINT2000/252.eon/Makefile Thu Feb 28 01:57:20 2013
@@ -57,7 +57,7 @@ Source = $(addprefix $(SPEC_BENCH_DIR)/s
mrXYRectangle.cc mrXZRectangle.cc mrYZRectangle.cc myrand.cc)
# Yes, we know this is an old crufty C++ benchmark. Don't tell us about it GCC!
-CXXFLAGS += -fno-exceptions -Wno-deprecated -Wno-non-template-friend -fpermissive
+CXXFLAGS += -fno-exceptions -Wno-deprecated -Wno-non-template-friend -fpermissive -stdlib=libstdc++
LDFLAGS = -lstdc++ -lm
LIBS = -lm
More information about the llvm-commits
mailing list