cmake: remove -lc++abi

fixes #46
This commit is contained in:
Vaxry 2024-05-23 16:16:17 +02:00
parent c7c2d29831
commit 87d5d98410
1 changed files with 1 additions and 1 deletions

View File

@ -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()