cmcfarlen commented on code in PR #9862:
URL: https://github.com/apache/trafficserver/pull/9862#discussion_r1232462462
##########
CMakeLists.txt:
##########
@@ -150,6 +151,12 @@ if(TSMallocReplacement_FOUND)
link_libraries(ts::TSMallocReplacement)
endif()
+if(CMAKE_SYSTEM_NAME STREQUAL "Linux" AND ENABLE_UNWIND)
+ find_package(unwind REQUIRED)
+ link_libraries(unwind::unwind)
+ set(TS_USE_REMOTE_UNWINDING TRUE)
+endif()
+
Review Comment:
There is already a linux specific section below. Perhaps move this inside
that so they are consolidated.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]