summaryrefslogtreecommitdiff
path: root/projects
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-10-29 06:42:38 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-10-29 06:42:38 +0000
commit6e039e561612df3dba5bd407ed0b1cb9b6c2eb91 (patch)
treebf4b7723603fdb3835f83a4b05e9b7a71516d8d1 /projects
parent85ec003b1d2d5dcd9b1aa850519d0fa1e9df5dfe (diff)
downloadllvm-6e039e561612df3dba5bd407ed0b1cb9b6c2eb91.tar.gz
llvm-6e039e561612df3dba5bd407ed0b1cb9b6c2eb91.tar.bz2
llvm-6e039e561612df3dba5bd407ed0b1cb9b6c2eb91.tar.xz
Make sure the LLVM_CONFIG_DIR environment variable is set so we don't get
error messages from the compiler. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17335 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'projects')
-rw-r--r--projects/Stacker/samples/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/projects/Stacker/samples/Makefile b/projects/Stacker/samples/Makefile
index 2d4c40cbbb..d5b278061c 100644
--- a/projects/Stacker/samples/Makefile
+++ b/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)