Skip to content

Commit 9075928

Browse files
committed
[test-suite] Set language level to c++14 to tests failing with gnu++17
The following tests fail to build on the AIX buildbot due to the change to set the language level to gnu++17: test-suite :: MultiSource/Benchmarks/tramp3d-v4/tramp3d-v4.test test-suite :: SingleSource/Benchmarks/Misc-C++-EH/spirit.test test-suite :: SingleSource/Benchmarks/Misc-C++/stepanov_container.test Reviewed By: daltenty, MaskRay Differential Revision: https://reviews.llvm.org/D133591
1 parent 83de0f3 commit 9075928

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

MultiSource/Benchmarks/tramp3d-v4/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
set(CMAKE_CXX_STANDARD 14)
12
list(APPEND CXXFLAGS -fno-exceptions)
23
if(SMALL_PROBLEM_SIZE)
34
set(RUN_OPTIONS --cartvis 1.0 0.0 --rhomin 1e-8 -n 4 --domain 32 32 32)
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
set(CMAKE_CXX_STANDARD 14)
12
list(APPEND CXXFLAGS -pthread)
23
list(APPEND LDFLAGS -lm -pthread)
34
llvm_singlesource()

SingleSource/Benchmarks/Misc-C++/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
set(CMAKE_CXX_STANDARD 14)
12
add_subdirectory(Large)
23

34
list(APPEND LDFLAGS -lm)

0 commit comments

Comments
 (0)