diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-02-23 10:28:06 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-02-23 10:28:06 +0000 |
commit | 7cfbe2576d98e6ca6d65a05514d1477233543c42 (patch) | |
tree | 706a571a4ef5798cddd4980204ccea14767d69db /runtime/libprofile | |
parent | 797faed186a0a3c4e0e080923e96c1f58d63a672 (diff) | |
download | external_llvm-7cfbe2576d98e6ca6d65a05514d1477233543c42.zip external_llvm-7cfbe2576d98e6ca6d65a05514d1477233543c42.tar.gz external_llvm-7cfbe2576d98e6ca6d65a05514d1477233543c42.tar.bz2 |
Switch .bc/.ll Makefile rules to use LLVM{CC,CXX} instead of LLVMG{CC,XX}
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@96936 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'runtime/libprofile')
-rw-r--r-- | runtime/libprofile/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/libprofile/Makefile b/runtime/libprofile/Makefile index 92a8558..15e6779 100644 --- a/runtime/libprofile/Makefile +++ b/runtime/libprofile/Makefile @@ -10,7 +10,7 @@ LEVEL = ../.. include $(LEVEL)/Makefile.config -ifneq ($(wildcard $(LLVMGCC)),) +ifneq ($(strip $(LLVMCC)),) BYTECODE_LIBRARY = 1 endif SHARED_LIBRARY = 1 |