Skip to content

Commit 2622b24

Browse files
committed
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. llvm-svn: 194878
1 parent 0858864 commit 2622b24

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

clang/runtime/compiler-rt/Makefile

+3-1
Original file line numberDiff line numberDiff line change
@@ -78,12 +78,14 @@ ifeq ($(shell test -d $(COMPILERRT_SRC_ROOT) && echo OK),OK)
7878
# support.
7979
RuntimeDirs :=
8080
ifeq ($(OS),Darwin)
81-
RuntimeDirs += darwin
81+
RuntimeDirs += darwin darwin_embedded
8282
RuntimeLibrary.darwin.Configs := \
8383
eprintf.a 10.4.a osx.a ios.a cc_kext.a cc_kext_ios5.a \
8484
asan_osx_dynamic.dylib \
8585
profile_osx.a profile_ios.a \
8686
ubsan_osx.a
87+
RuntimeLibrary.darwin_embedded.Configs := \
88+
soft_static.a hard_static.a soft_pic.a hard_pic.a
8789

8890
# Support building compiler-rt with relocatable SDKs.
8991
#

0 commit comments

Comments
 (0)