This is an automated email from the ASF dual-hosted git repository.
bcall 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 72f7898642 Fix MacOS linking warning for xcode 15 (#11062)
72f7898642 is described below
commit 72f789864292ac28ec1c6c1126709a057299cfb4
Author: Bryan Call <[email protected]>
AuthorDate: Mon Feb 26 15:15:43 2024 -0800
Fix MacOS linking warning for xcode 15 (#11062)
---
CMakeLists.txt | 1 +
1 file changed, 1 insertion(+)
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 947625d237..d5bb5f1fb5 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -522,6 +522,7 @@ endif(HOST_OS STREQUAL "linux")
if(HOST_OS STREQUAL "darwin")
set(CMAKE_MACOSX_RPATH 1)
+ link_libraries("-ld_classic")
endif(HOST_OS STREQUAL "darwin")
if(HOST_OS STREQUAL "freebsd")