Skip to content

Commit

Permalink
cmake: remove -lc++abi
Browse files Browse the repository at this point in the history
fixes #46
  • Loading branch information
vaxerski committed May 23, 2024
1 parent c7c2d29 commit 87d5d98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down

0 comments on commit 87d5d98

Please sign in to comment.