diff options
author | Tim Northover <tnorthover@apple.com> | 2014-01-21 12:38:19 +0000 |
---|---|---|
committer | Tim Northover <tnorthover@apple.com> | 2014-01-21 12:38:19 +0000 |
commit | 1a9b904b76400b05c7a6110961e7b0dc001b9cf7 (patch) | |
tree | 73d23e3dbeb31f0b8a67bd2f9695e45cf05b6c61 /clang/runtime | |
parent | 4bf6078841331b65c649639f88cdf3aeebb2c9d4 (diff) | |
download | bcm5719-llvm-1a9b904b76400b05c7a6110961e7b0dc001b9cf7.tar.gz bcm5719-llvm-1a9b904b76400b05c7a6110961e7b0dc001b9cf7.zip |
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.
llvm-svn: 199733
Diffstat (limited to 'clang/runtime')
-rw-r--r-- | clang/runtime/compiler-rt/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/runtime/compiler-rt/Makefile b/clang/runtime/compiler-rt/Makefile index f081e8a92e2..b683fcdc8b9 100644 --- a/clang/runtime/compiler-rt/Makefile +++ b/clang/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 |