Skip to content

Commit 38fba7f

Browse files
committed
.
1 parent 5f7db5f commit 38fba7f

2 files changed

Lines changed: 6 additions & 8 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ elseif(CMAKE_CXX_COMPILER_ID MATCHES "GNU")
248248
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++2c")
249249
endif()
250250
elseif(CMAKE_CXX_COMPILER_ID MATCHES "Clang")
251-
if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS "7")
251+
if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS "10")
252252
# The libstdc++6 library, as of 2021-06-15, no longer works with
253253
# Clang++-6 in c++2a mode, failing with a reference to the unknown
254254
# std::is_constant_evaluated().

appveyor.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ environment:
1515
# GENERATOR: Visual Studio 16 2019
1616
# WINDOWS_SDK: 10.0.19041.0
1717

18-
# - CXX: clang++-6.0
19-
# CC: clang-6.0
20-
# APPVEYOR_BUILD_WORKER_IMAGE: Ubuntu1604
21-
# INSTALL_COMPILER: ON
18+
- CXX: clang++-6.0
19+
CC: clang-6.0
20+
APPVEYOR_BUILD_WORKER_IMAGE: Ubuntu1604
21+
INSTALL_COMPILER: ON
22+
CXXFLAGS: -stdlib=libc++
2223
- CXX: clang++-7
2324
CC: clang-7
2425
APPVEYOR_BUILD_WORKER_IMAGE: Ubuntu1804
2526
INSTALL_COMPILER: ON
26-
INSTALL_BEFORE: libc++-7-dev
2727
CXXFLAGS: -stdlib=libc++
2828
# - CXX: clang++-8
2929
# CC: clang-8
@@ -33,8 +33,6 @@ environment:
3333
CC: clang-9
3434
APPVEYOR_BUILD_WORKER_IMAGE: Ubuntu2004
3535
INSTALL_COMPILER: ON
36-
INSTALL_BEFORE: libc++-9-dev
37-
CXXFLAGS: -stdlib=libc++
3836
# - CXX: clang++-10
3937
# CC: clang-10
4038
# APPVEYOR_BUILD_WORKER_IMAGE: Ubuntu2004

0 commit comments

Comments
 (0)