hnakamur commented on PR #12035: URL: https://github.com/apache/trafficserver/pull/12035#issuecomment-2657900699
If we stick with CMake 3.20, we can use a workaround which uses -Wl,--start-group and -Wl,--end-group manually (https://github.com/hnakamur/trafficserver/commit/83784aa6971f0e4a89226e14030c10742bf96ae8). ``` target_link_libraries( test_net PRIVATE catch2::catch2 ts::tscore -Wl,--start-group ${LINK_GROUP_LIBS} -Wl,--end-group ts::tsutil ts::inkevent libswoc::libswoc ) ``` If we upgrade CMake to 3.24, we might want add an instruction to install CMake >=3.24 from https://github.com/Kitware/CMake/releases to README. -- 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]
