[libcxx-commits] [libcxxabi] 77610dd - [libc++abi] Fix typo in CMake error message
Louis Dionne via libcxx-commits
libcxx-commits at lists.llvm.org
Tue Jan 16 07:56:08 PST 2024
Author: Louis Dionne
Date: 2024-01-16T10:56:03-05:00
New Revision: 77610dd10454e87bb387040d2b51100a17ac5755
URL: https://github.com/llvm/llvm-project/commit/77610dd10454e87bb387040d2b51100a17ac5755
DIFF: https://github.com/llvm/llvm-project/commit/77610dd10454e87bb387040d2b51100a17ac5755.diff
LOG: [libc++abi] Fix typo in CMake error message
Added:
Modified:
libcxxabi/CMakeLists.txt
Removed:
################################################################################
diff --git a/libcxxabi/CMakeLists.txt b/libcxxabi/CMakeLists.txt
index 9d8bfa548b0125..da998d2221dc4f 100644
--- a/libcxxabi/CMakeLists.txt
+++ b/libcxxabi/CMakeLists.txt
@@ -48,7 +48,7 @@ option(LIBCXXABI_ENABLE_PEDANTIC "Compile with pedantic enabled." OFF)
option(LIBCXXABI_ENABLE_WERROR "Fail and stop if a warning is triggered." OFF)
option(LIBCXXABI_USE_LLVM_UNWINDER "Build and use the LLVM unwinder." ON)
if (LIBCXXABI_USE_LLVM_UNWINDER AND NOT "libunwind" IN_LIST LLVM_ENABLE_RUNTIMES)
- message(FATAL_ERROR "LIBCXXABI_USE_LLVM_UNWINDER is set to ON, but libuwnind is not specified in LLVM_ENABLE_RUNTIMES.")
+ message(FATAL_ERROR "LIBCXXABI_USE_LLVM_UNWINDER is set to ON, but libunwind is not specified in LLVM_ENABLE_RUNTIMES.")
endif()
option(LIBCXXABI_ENABLE_STATIC_UNWINDER "Statically link the LLVM unwinder." OFF)
option(LIBCXXABI_USE_COMPILER_RT "Use compiler-rt instead of libgcc" OFF)
More information about the libcxx-commits
mailing list