this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Make libgcc_s fat and set its dylib properties

+4
+4
src/libgcc/CMakeLists.txt
··· 13 13 dummy.c 14 14 ) 15 15 16 + set(DYLIB_COMPAT_VERSION "1.0.0") 17 + set(DYLIB_CURRENT_VERSION "1.0.0") 18 + set(DYLIB_INSTALL_NAME "/usr/lib/libgcc_s.1.dylib") 16 19 add_darling_library(gcc_s SHARED ${libgcc_sources}) 20 + make_fat(gcc_s) 17 21 target_link_libraries(gcc_s PRIVATE compiler_rt) 18 22 set_target_properties(gcc_s PROPERTIES OUTPUT_NAME "gcc_s.1") 19 23