this repo has no description
1
fork

Configure Feed

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

Fixed ObjC ABI 1/2 selection

+5 -4
+5 -4
src/libobjcdarwin/CMakeLists.txt
··· 11 11 # message(FATAL_ERROR "Clang is the only supported compiler.") 12 12 #endif (NOT "${CMAKE_CXX_COMPILER} ${CMAKE_CXX_COMPILER_ARG1}" MATCHES ".*clang") 13 13 14 + if (BITS EQUAL 64) # Would need to be extended for ARM 15 + set(OBJC_ABI_2 TRUE) 16 + message(STATUS "Building ObjC ABI 2") 17 + endif(BITS EQUAL 64) 18 + 14 19 configure_file(config.h.in config.h) 15 20 16 21 add_definitions(-D__STDC_LIMIT_MACROS) 17 - 18 - if (BITS EQUAL 64) # Would need to be extended for ARM 19 - set(OBJC_ABI_2 TRUE) 20 - endif(BITS EQUAL 64) 21 22 22 23 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x -fPIC -fvisibility=hidden -ggdb") 23 24 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c99 -fPIC -fvisibility=hidden -ggdb")