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...
This commit is contained in:
Thomas A. 2024-10-31 22:19:51 -07:00
parent 5243669cee
commit 30a76a2c85

View File

@ -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)