diff options
| author | Chris Bieneman <beanz@apple.com> | 2015-09-30 21:09:23 +0000 |
|---|---|---|
| committer | Chris Bieneman <beanz@apple.com> | 2015-09-30 21:09:23 +0000 |
| commit | 7bfe1ee428a6ba991b70cb654a634a9a05752af4 (patch) | |
| tree | af85d776553d4bbf8431306dd1758e16cdcc8a1c | |
| parent | fc783e91e0c0696ec5b3a990a7ac91bd751e370d (diff) | |
| download | bcm5719-llvm-7bfe1ee428a6ba991b70cb654a634a9a05752af4.tar.gz bcm5719-llvm-7bfe1ee428a6ba991b70cb654a634a9a05752af4.zip | |
[CMake] [Darwin] [macho_embedded] Specify the version min explicitly.
We need to set the OS X deployment target on the macho_embedded libraries to match the outputs from the autoconf build system.
llvm-svn: 248944
| -rw-r--r-- | compiler-rt/cmake/Modules/CompilerRTDarwinUtils.cmake | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler-rt/cmake/Modules/CompilerRTDarwinUtils.cmake b/compiler-rt/cmake/Modules/CompilerRTDarwinUtils.cmake index e2fe795acdf..86c45429b8b 100644 --- a/compiler-rt/cmake/Modules/CompilerRTDarwinUtils.cmake +++ b/compiler-rt/cmake/Modules/CompilerRTDarwinUtils.cmake @@ -376,6 +376,7 @@ function(darwin_add_embedded_builtin_libraries) string(TOLOWER "${float_type}_${type}" lib_suffix) foreach(arch ${DARWIN_${float_type}_FLOAT_ARCHS}) set(DARWIN_macho_embedded_SYSROOT ${DARWIN_osx_SYSROOT}) + set(DARWIN_macho_embedded_BUILTIN_MIN_VER_FLAG ${DARWIN_osx_BUILTIN_MIN_VER_FLAG}) if(${arch} MATCHES "^arm") set(DARWIN_macho_embedded_SYSROOT ${DARWIN_ios_SYSROOT}) endif() |

