From 87d5d984109c839482b88b4795db073eb9ed446f Mon Sep 17 00:00:00 2001 From: Vaxry Date: Thu, 23 May 2024 16:16:17 +0200 Subject: [PATCH] cmake: remove -lc++abi fixes #46 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9b63c5a..f64c315 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -45,7 +45,7 @@ if (CMAKE_CXX_COMPILER_ID MATCHES "Clang") # probably evil. Arch's clang is very outdated tho... target_compile_options(hyprlang PUBLIC -std=gnu++2b -D__cpp_concepts=202002L -Wno-macro-redefined) add_compile_options(-stdlib=libc++) - add_link_options(-stdlib=libc++ -lc++abi) + add_link_options(-stdlib=libc++) message(STATUS "Using clang++ to compile hyprlang") endif()