forked from llvm/llvm-test-suite
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[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
- Loading branch information
Showing
3 changed files
with
3 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | ||
|