diff options
author | Alexey Samsonov <vonosmas@gmail.com> | 2014-05-22 21:13:30 +0000 |
---|---|---|
committer | Alexey Samsonov <vonosmas@gmail.com> | 2014-05-22 21:13:30 +0000 |
commit | 99ee10d2b83ba4000e14fbb5639174260fcdfb1c (patch) | |
tree | db0f306ea0d054f140c970b2908593c88f2978bc /clang/runtime | |
parent | 00997e29e58029da7d5e73ade10351da75262b3b (diff) | |
download | bcm5719-llvm-99ee10d2b83ba4000e14fbb5639174260fcdfb1c.tar.gz bcm5719-llvm-99ee10d2b83ba4000e14fbb5639174260fcdfb1c.zip |
Unify the name of compiler-rt builtins library on Linux.
Call it "libclang_rt.builtins-<arch>.a" to be consistent
with sanitizers/profile libraries naming. Modify Makefile
and CMake build systems and Clang driver accordingly.
Fixes PR19822.
llvm-svn: 209474
Diffstat (limited to 'clang/runtime')
-rw-r--r-- | clang/runtime/compiler-rt/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/runtime/compiler-rt/Makefile b/clang/runtime/compiler-rt/Makefile index 9833eb901ab..ccd83a35704 100644 --- a/clang/runtime/compiler-rt/Makefile +++ b/clang/runtime/compiler-rt/Makefile @@ -126,7 +126,7 @@ TryCompile = \ # We try to build 32-bit runtimes both on 32-bit hosts and 64-bit hosts. Runtime32BitConfigs = \ - full-i386.a profile-i386.a san-i386.a asan-i386.a asan_cxx-i386.a \ + builtins-i386.a profile-i386.a san-i386.a asan-i386.a asan_cxx-i386.a \ ubsan-i386.a ubsan_cxx-i386.a # We currently only try to generate runtime libraries on x86. @@ -136,7 +136,7 @@ endif ifeq ($(ARCH),x86_64) RuntimeLibrary.linux.Configs += \ - full-x86_64.a profile-x86_64.a san-x86_64.a asan-x86_64.a \ + builtins-x86_64.a profile-x86_64.a san-x86_64.a asan-x86_64.a \ asan_cxx-x86_64.a tsan-x86_64.a msan-x86_64.a ubsan-x86_64.a \ ubsan_cxx-x86_64.a dfsan-x86_64.a lsan-x86_64.a # We need to build 32-bit ASan/UBsan libraries on 64-bit platform, and add them |