Hyprland/scripts/hyprlandStaticAsan.diff

14 lines
546 B
Diff
Raw Permalink Normal View History

2024-03-01 15:14:28 +01:00
diff --git a/CMakeLists.txt b/CMakeLists.txt
2024-04-24 17:44:15 +02:00
index f54cdf5d..ad7c3e73 100755
2024-03-01 15:14:28 +01:00
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
2024-04-24 17:44:15 +02:00
@@ -130,6 +130,8 @@ if(CMAKE_BUILD_TYPE MATCHES Debug OR CMAKE_BUILD_TYPE MATCHES DEBUG)
2024-03-01 15:14:28 +01:00
message(STATUS "Enabling ASan")
target_link_libraries(Hyprland asan)
2024-04-24 17:44:15 +02:00
+ pkg_check_modules(ffidep REQUIRED IMPORTED_TARGET libffi)
+ target_link_libraries(Hyprland ${CMAKE_SOURCE_DIR}/libwayland-server.a PkgConfig::ffidep)
2024-03-01 15:14:28 +01:00
target_compile_options(Hyprland PUBLIC -fsanitize=address)
endif()
2024-03-22 19:34:12 +01:00