[libcxx-commits] [libcxxabi] aae2ff6 - [libc++abi] Also build the static archive with C++17

Louis Dionne via libcxx-commits libcxx-commits at lists.llvm.org
Thu Jul 23 09:40:27 PDT 2020


Author: Louis Dionne
Date: 2020-07-23T12:40:19-04:00
New Revision: aae2ff645bd5d89e4618bcd6d1ee0f115f3d47d3

URL: https://github.com/llvm/llvm-project/commit/aae2ff645bd5d89e4618bcd6d1ee0f115f3d47d3
DIFF: https://github.com/llvm/llvm-project/commit/aae2ff645bd5d89e4618bcd6d1ee0f115f3d47d3.diff

LOG: [libc++abi] Also build the static archive with C++17

The dylib and the static archive should really be built using the same
Standard, it was just an oversight.

Added: 
    

Modified: 
    libcxxabi/src/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/libcxxabi/src/CMakeLists.txt b/libcxxabi/src/CMakeLists.txt
index 10300d152c76..85e3fda034f7 100644
--- a/libcxxabi/src/CMakeLists.txt
+++ b/libcxxabi/src/CMakeLists.txt
@@ -234,7 +234,7 @@ if (LIBCXXABI_ENABLE_STATIC)
                           CXX_EXTENSIONS
                             OFF
                           CXX_STANDARD
-                            11
+                            17
                           CXX_STANDARD_REQUIRED
                             ON
                           COMPILE_FLAGS


        


More information about the libcxx-commits mailing list