diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2006-10-02 19:10:56 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2006-10-02 19:10:56 +0000 |
commit | 76907e3dafe59fd29d0e5a17263566164904b117 (patch) | |
tree | 085389af1e3832e230c8971dcf8db5b9cc7dba3b /projects | |
parent | b56371edbc42dd8691eb78db91f12c0e31faa6c5 (diff) | |
download | external_llvm-76907e3dafe59fd29d0e5a17263566164904b117.zip external_llvm-76907e3dafe59fd29d0e5a17263566164904b117.tar.gz external_llvm-76907e3dafe59fd29d0e5a17263566164904b117.tar.bz2 |
Don't build the runtime library if LLVMGCC is not configured.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30691 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'projects')
-rw-r--r-- | projects/Stacker/lib/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/projects/Stacker/lib/Makefile b/projects/Stacker/lib/Makefile index a302a85..bee436b 100644 --- a/projects/Stacker/lib/Makefile +++ b/projects/Stacker/lib/Makefile @@ -7,4 +7,9 @@ LEVEL = .. DIRS = compiler runtime +# Don't generate the runtime if we don't have LLVMGCC +ifeq ($(LLVMGCC),) + DIRS := $(filter-out runtime, $(DIRS)) +endif + include $(LEVEL)/Makefile.common |