This is an automated email from the ASF dual-hosted git repository.
masaori pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
The following commit(s) were added to refs/heads/master by this push:
new def08803db Prioritise unwind_INCLUDE_DIRS path (#12017)
def08803db is described below
commit def08803db9130766d8c88e3c3cedc817ff27304
Author: Masaori Koshiba <[email protected]>
AuthorDate: Wed Feb 12 13:23:02 2025 +0900
Prioritise unwind_INCLUDE_DIRS path (#12017)
---
src/traffic_crashlog/CMakeLists.txt | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/traffic_crashlog/CMakeLists.txt
b/src/traffic_crashlog/CMakeLists.txt
index 2ee1ac9a8c..65b8cda240 100644
--- a/src/traffic_crashlog/CMakeLists.txt
+++ b/src/traffic_crashlog/CMakeLists.txt
@@ -20,6 +20,7 @@ add_executable(traffic_crashlog procinfo.cc backtrace.cc
traffic_crashlog.cc)
target_link_libraries(traffic_crashlog PRIVATE ts::inkevent ts::records
ts::tscore ts::tsutil)
if(TS_USE_REMOTE_UNWINDING)
+ target_include_directories(traffic_crashlog BEFORE PRIVATE
${unwind_INCLUDE_DIRS})
target_link_libraries(traffic_crashlog PRIVATE unwind::unwind)
endif()