r194878 - Darwin(ish): enable embedded compiler-rt builds on Darwin.
Tim Northover
tnorthover at apple.com
Fri Nov 15 15:12:45 PST 2013
Author: tnorthover
Date: Fri Nov 15 17:12:44 2013
New Revision: 194878
URL: http://llvm.org/viewvc/llvm-project?rev=194878&view=rev
Log:
Darwin(ish): enable embedded compiler-rt builds on Darwin.
This builds extra versions of compiler-rt targeting various unhosted targets.
Only built on Darwin since even though they're not iOS or OSX, they share some
quirks.
Modified:
cfe/trunk/runtime/compiler-rt/Makefile
Modified: cfe/trunk/runtime/compiler-rt/Makefile
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/runtime/compiler-rt/Makefile?rev=194878&r1=194877&r2=194878&view=diff
==============================================================================
--- cfe/trunk/runtime/compiler-rt/Makefile (original)
+++ cfe/trunk/runtime/compiler-rt/Makefile Fri Nov 15 17:12:44 2013
@@ -78,12 +78,14 @@ ifeq ($(shell test -d $(COMPILERRT_SRC_R
# support.
RuntimeDirs :=
ifeq ($(OS),Darwin)
-RuntimeDirs += darwin
+RuntimeDirs += darwin darwin_embedded
RuntimeLibrary.darwin.Configs := \
eprintf.a 10.4.a osx.a ios.a cc_kext.a cc_kext_ios5.a \
asan_osx_dynamic.dylib \
profile_osx.a profile_ios.a \
ubsan_osx.a
+RuntimeLibrary.darwin_embedded.Configs := \
+ soft_static.a hard_static.a soft_pic.a hard_pic.a
# Support building compiler-rt with relocatable SDKs.
#
More information about the cfe-commits
mailing list