[PATCH] D13421: Fix makefile build on OSX when ARM targets are not enabled
Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Sun Oct 4 11:52:57 PDT 2015
This revision was automatically updated to reflect the committed changes.
Closed by commit rL249281: Fix makefile build on OSX when ARM targets are not enabled (authored by kfischer).
Changed prior to commit:
http://reviews.llvm.org/D13421?vs=36462&id=36473#toc
Repository:
rL LLVM
http://reviews.llvm.org/D13421
Files:
cfe/trunk/runtime/compiler-rt/Makefile
Index: cfe/trunk/runtime/compiler-rt/Makefile
===================================================================
--- cfe/trunk/runtime/compiler-rt/Makefile
+++ cfe/trunk/runtime/compiler-rt/Makefile
@@ -89,8 +89,10 @@
endif
ifneq ($(IOS_SDK),)
+ifneq (,$(filter ARM AARCH64,$(TARGETS_TO_BUILD)))
RuntimeLibrary.darwin.Configs += cc_kext_ios.a
endif
+endif
ifneq ($(IOSSIM_SDK),)
RuntimeLibrary.darwin.Configs += asan_iossim_dynamic.dylib \
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D13421.36473.patch
Type: text/x-patch
Size: 451 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20151004/3b552faf/attachment.bin>
More information about the cfe-commits
mailing list