mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 20:51:52 +01:00
[CMake] Allow overriding CMAKE_LIBTOOL
This patch allows a user to specify a their own libtool instead of auto-detecting one. llvm-svn: 294371
This commit is contained in:
parent
b36bc37b12
commit
7c80cb46fa
@ -56,6 +56,8 @@ endif()
|
||||
|
||||
# This should only apply if you are both on an Apple host, and targeting Apple.
|
||||
if(CMAKE_HOST_APPLE AND APPLE)
|
||||
# if CMAKE_LIBTOOL is not set, try and find it with xcrun or find_program
|
||||
if(NOT CMAKE_LIBTOOL)
|
||||
if(NOT CMAKE_XCRUN)
|
||||
find_program(CMAKE_XCRUN NAMES xcrun)
|
||||
endif()
|
||||
@ -68,6 +70,7 @@ if(CMAKE_HOST_APPLE AND APPLE)
|
||||
if(NOT CMAKE_LIBTOOL OR NOT EXISTS CMAKE_LIBTOOL)
|
||||
find_program(CMAKE_LIBTOOL NAMES libtool)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
get_property(languages GLOBAL PROPERTY ENABLED_LANGUAGES)
|
||||
if(CMAKE_LIBTOOL)
|
||||
|
Loading…
x
Reference in New Issue
Block a user