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 | 3c28f8b28a6b79e113cc944abb15969babf9177a (patch) | |
tree | 706a571a4ef5798cddd4980204ccea14767d69db /runtime | |
parent | cb8f178b4ba47f198635a96f545756d6469ceef7 (diff) | |
download | external_llvm-3c28f8b28a6b79e113cc944abb15969babf9177a.zip external_llvm-3c28f8b28a6b79e113cc944abb15969babf9177a.tar.gz external_llvm-3c28f8b28a6b79e113cc944abb15969babf9177a.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')
-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 |