this repo has no description
1
fork

Configure Feed

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

Fix libstdcxx build by moving libcxx include

+7 -4
+7 -4
src/CMakeLists.txt
··· 84 84 file(MAKE_DIRECTORY ${CMAKE_BINARY_DIR}/${DARLING_SDK_RELATIVE_PATH}/usr/include) 85 85 86 86 include_directories( 87 - ${CMAKE_SOURCE_DIR}/src/external/libcxx/include 88 87 ${CMAKE_SOURCE_DIR}/${DARLING_SDK_RELATIVE_PATH}/usr/include 89 88 ${CMAKE_BINARY_DIR}/${DARLING_SDK_RELATIVE_PATH}/usr/include 90 89 ${CMAKE_SOURCE_DIR}/framework-include ··· 115 114 add_subdirectory(vchroot) 116 115 117 116 add_subdirectory(lib) 117 + 118 + # libstdc++ doesn't use the libc++ headers included below 119 + add_subdirectory(libstdcxx) 120 + 121 + include_directories(BEFORE 122 + ${CMAKE_SOURCE_DIR}/src/external/libcxx/include 123 + ) 118 124 119 125 add_definitions(-D_LIBC_NO_FEATURE_VERIFICATION) 120 126 add_subdirectory(external/darling-dmg) ··· 298 304 include_directories(BEFORE 299 305 ${CMAKE_CURRENT_SOURCE_DIR}/external/libcxxabi/include 300 306 ) 301 - 302 - # libstdc++ doesn't use the headers included below 303 - add_subdirectory(libstdcxx) 304 307 305 308 add_subdirectory(external/libcxxabi) 306 309 add_subdirectory(external/libcxx)