diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-10-29 06:42:38 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-10-29 06:42:38 +0000 |
commit | 8b091689db3455f142d6bdb8baefba7cc0d71906 (patch) | |
tree | 94ae8b0dab20b68fbcaa206871d8b2cb16ffa4d2 | |
parent | da86a3778adba157bf10d20646455f4b38839bb0 (diff) | |
download | bcm5719-llvm-8b091689db3455f142d6bdb8baefba7cc0d71906.tar.gz bcm5719-llvm-8b091689db3455f142d6bdb8baefba7cc0d71906.zip |
Make sure the LLVM_CONFIG_DIR environment variable is set so we don't get
error messages from the compiler.
llvm-svn: 17335
-rw-r--r-- | llvm/projects/Stacker/samples/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/projects/Stacker/samples/Makefile b/llvm/projects/Stacker/samples/Makefile index 2d4c40cbbbd..d5b278061cc 100644 --- a/llvm/projects/Stacker/samples/Makefile +++ b/llvm/projects/Stacker/samples/Makefile @@ -14,7 +14,7 @@ EXTRA_DIST = fibonacci.st hello.st prime.st goof.st SAMPLES = fibonacci hello prime goof -LLVMC_EXEC = $(TOOLDIR)/llvmc +LLVMC_EXEC = LLVM_CONFIG_DIR=$(BUILD_SRC_ROOT)/tools/llvmc $(TOOLDIR)/llvmc all :: $(SAMPLES) |