this repo has no description
1
fork

Configure Feed

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

Build Python 2.6

+20 -4
+12
cmake/darling_bundle.cmake
··· 1 + 2 + FUNCTION(add_darling_bundle name loader) 3 + add_darling_library(${name} ${ARGN}) 4 + set_property(TARGET ${name} APPEND_STRING PROPERTY 5 + LINK_FLAGS " -Wl,-bundle ") 6 + 7 + if (loader) 8 + set_property(TARGET ${name} APPEND_STRING PROPERTY 9 + LINK_FLAGS " -Wl,-bundle_loader,${loader} ") 10 + endif (loader) 11 + ENDFUNCTION(add_darling_bundle) 12 +
+1 -1
cmake/darling_lib.cmake
··· 12 12 endforeach(f) 13 13 14 14 set(CMAKE_SKIP_RPATH TRUE) 15 - add_library(${name} ${files}) 15 + add_library(${name} SHARED ${files}) 16 16 17 17 # Link using Apple's ld64 18 18 set_target_properties(${name} PROPERTIES
+4 -1
cmake/use_ld64.cmake
··· 30 30 -Wl,-dylib_file,/usr/lib/libresolv.9.dylib:${CMAKE_BINARY_DIR}/src/libresolv/libresolv.9.dylib \ 31 31 -Wl,-dylib_file,/usr/lib/system/libxpc.dylib:${CMAKE_BINARY_DIR}/src/external/libxpc/libxpc_firstpass.dylib \ 32 32 -Wl,-dylib_file,/usr/lib/libc++.1.dylib:${CMAKE_BINARY_DIR}/lib/libc++.1.dylib \ 33 - -Wl,-dylib_file,/usr/lib/system/libsystem_malloc.dylib:${CMAKE_BINARY_DIR}/src/libmalloc/libsystem_malloc_firstpass.dylib ") 33 + -Wl,-dylib_file,/usr/lib/system/libsystem_malloc.dylib:${CMAKE_BINARY_DIR}/src/libmalloc/libsystem_malloc_firstpass.dylib \ 34 + -Wl,-dylib_file,/usr/lib/libobjc.A.dylib:${CMAKE_BINARY_DIR}/src/external/objc4/runtime/libobjc.A.dylib \ 35 + -Wl,-dylib_file,/usr/lib/libicucore.dylib:${CMAKE_BINARY_DIR}/src/external/icu/icuSources/libicucore.dylib \ 36 + -Wl,-dylib_file,/System/Library/Frameworks/Python.framework/Versions/2.6/Python:${CMAKE_BINARY_DIR}/src/external/python/2.6/Python-2.6.9/Python ") 34 37 35 38 add_dependencies(${target} x86_64-apple-darwin11-ld) 36 39
+2 -2
src/CMakeLists.txt
··· 130 130 add_subdirectory(external/compiler-rt/lib/builtins) 131 131 add_subdirectory(CommonCrypto) 132 132 add_subdirectory(csu) 133 - #add_subdirectory(external/python/2.6/Python-2.6.9) 133 + add_subdirectory(external/python/2.6/Python-2.6.9) 134 134 #add_subdirectory(external/python/2.7/Python-2.7.10) 135 135 #add_subdirectory(external/ruby) 136 136 add_subdirectory(external/expat) ··· 151 151 add_subdirectory(external/text_cmds) 152 152 add_subdirectory(external/adv_cmds) 153 153 #add_subdirectory(external/network_cmds) 154 - add_subdirectory(external/system_cmds) 154 + #add_subdirectory(external/system_cmds) 155 155 add_subdirectory(external/bash) 156 156 add_subdirectory(external/less) 157 157 add_subdirectory(external/grep)
+1
src/csu/CMakeLists.txt
··· 20 20 ) 21 21 22 22 add_darling_library(csu STATIC ${csu_SRCS}) 23 + make_fat(csu) 23 24