libarchive: Use one architecture for try-compiles
We use CHECK_TYPE_SIZE in libarchive to check for the existence of some types. For universal binary builds on the Mac, the size check can fail if it is inconsistent across architectures. However, we do not actually need the size so it is safe to do the checks for only one architecture. See issue #9913.
This commit is contained in:
parent
1da9b54a59
commit
9e852190b3
|
@ -4,6 +4,13 @@ PROJECT(libarchive C)
|
|||
#
|
||||
CMAKE_MINIMUM_REQUIRED(VERSION 2.6.1)
|
||||
SET(CMAKE_MODULE_PATH "${libarchive_SOURCE_DIR}/build/cmake")
|
||||
|
||||
# We use CHECK_TYPE_SIZE for existence tests, so use only one arch.
|
||||
LIST(LENGTH CMAKE_OSX_ARCHITECTURES NUM_ARCHS)
|
||||
IF(${NUM_ARCHS} GREATER 1)
|
||||
LIST(GET CMAKE_OSX_ARCHITECTURES 0 CMAKE_TRY_COMPILE_OSX_ARCHITECTURES)
|
||||
ENDIF()
|
||||
|
||||
#
|
||||
# Version - read from 'version' file.
|
||||
#
|
||||
|
|
Loading…
Reference in New Issue