From 30a76a2c85de10d179801b27364b01558a4a2d4a Mon Sep 17 00:00:00 2001 From: "Thomas A." Date: Thu, 31 Oct 2024 22:19:51 -0700 Subject: [PATCH] Build All Sources For CXX Static Library I couldn't find an explantion for why we only build "stdexcept.cpp" instead of all of the libcxx source code... --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5789e7d19..c15f77a7c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -70,6 +70,6 @@ install(TARGETS cxx DESTINATION libexec/darling/usr/lib) InstallSymlink("libc++.1.dylib" "${CMAKE_INSTALL_PREFIX}/libexec/darling/usr/lib/libc++.dylib") # For dyld only -add_darling_static_library(cxx_static SOURCES src/stdexcept.cpp) +add_darling_static_library(cxx_static SOURCES ${cxx_sources}) make_fat(cxx_static)