Compare commits

...

7 Commits

Author SHA1 Message Date
0ca2ecc6d7 remove CI debugging crap 2021-02-13 20:17:23 -08:00
04e24a7ca4 use Clang 10 on linux 2021-02-13 20:15:05 -08:00
f86ca6b63d use a version of Ubuntu that isnt ancient 2021-02-13 20:12:51 -08:00
85af325722 try again 2021-02-13 20:08:15 -08:00
9bf177627f try again 2021-02-13 20:07:27 -08:00
83c1ee8a90 quick test 2021-02-13 20:03:02 -08:00
4812070f9d quick test 2021-02-13 20:01:12 -08:00
2 changed files with 5 additions and 5 deletions

View File

@ -20,10 +20,10 @@ jobs:
- os: macos-latest
cc: "clang"
cxx: "clang++"
- os: ubuntu-latest
cc: "clang-9"
cxx: "clang++-9"
- os: ubuntu-latest
- os: Ubuntu-20.04
cc: "clang-10"
cxx: "clang++-10"
- os: Ubuntu-20.04
cc: "gcc-10"
cxx: "g++-10"
- os: windows-latest

View File

@ -54,7 +54,7 @@ set(CLANG_WARNINGS
if(CMAKE_CXX_COMPILER_ID MATCHES ".*Clang")
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -stdlib=libc++ -lc++abi")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -v -stdlib=libc++")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++")
set(PROJECT_WARNINGS ${CLANG_WARNINGS})
target_compile_options(test_rgbcx PUBLIC ${PROJECT_WARNINGS})
endif()