summaryrefslogtreecommitdiffstats
path: root/runtime
diff options
context:
space:
mode:
authorTim Northover <tnorthover@apple.com>2014-01-21 12:38:19 +0000
committerTim Northover <tnorthover@apple.com>2014-01-21 12:38:19 +0000
commit110c3716c899f62487c0a4f5306ab54c096156de (patch)
tree82e10cb024aba56a101c5b4399ee6928a6d77981 /runtime
parenta63f66ffa92d9b5e199f9af7cc470e6b92fe0a31 (diff)
Macho-embedded: rename compiler-rt support from Darwin-embedded
There's nothing Darwin-based in the files or target now, so the previous name is now misleading. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@199733 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'runtime')
-rw-r--r--runtime/compiler-rt/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/compiler-rt/Makefile b/runtime/compiler-rt/Makefile
index f081e8a92e..b683fcdc8b 100644
--- a/runtime/compiler-rt/Makefile
+++ b/runtime/compiler-rt/Makefile
@@ -78,17 +78,17 @@ ifeq ($(shell test -d $(COMPILERRT_SRC_ROOT) && echo OK),OK)
# support.
RuntimeDirs :=
ifeq ($(OS),Darwin)
-RuntimeDirs += darwin darwin_embedded
+RuntimeDirs += darwin macho_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 := \
+RuntimeLibrary.macho_embedded.Configs := \
hard_static.a hard_pic.a
ifneq (,$(findstring ARM,$(TARGETS_TO_BUILD)))
-RuntimeLibrary.darwin_embedded.Configs += \
+RuntimeLibrary.macho_embedded.Configs += \
soft_static.a soft_pic.a
endif