Skip to content

Commit

Permalink
[test-suite] Set language level to c++14 to tests failing with gnu++17
Browse files Browse the repository at this point in the history
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
  • Loading branch information
ZarkoT committed Sep 9, 2022
1 parent 83de0f3 commit 9075928
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions MultiSource/Benchmarks/tramp3d-v4/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
set(CMAKE_CXX_STANDARD 14)
list(APPEND CXXFLAGS -fno-exceptions)
if(SMALL_PROBLEM_SIZE)
set(RUN_OPTIONS --cartvis 1.0 0.0 --rhomin 1e-8 -n 4 --domain 32 32 32)
Expand Down
1 change: 1 addition & 0 deletions SingleSource/Benchmarks/Misc-C++-EH/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
set(CMAKE_CXX_STANDARD 14)
list(APPEND CXXFLAGS -pthread)
list(APPEND LDFLAGS -lm -pthread)
llvm_singlesource()
1 change: 1 addition & 0 deletions SingleSource/Benchmarks/Misc-C++/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
set(CMAKE_CXX_STANDARD 14)
add_subdirectory(Large)

list(APPEND LDFLAGS -lm)
Expand Down

0 comments on commit 9075928

Please sign in to comment.