diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-11-25 09:36:28 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-11-25 09:36:28 +0000 |
commit | 1945a112496a09b57ce9049a29e0e2cc53e4606b (patch) | |
tree | b91d3eba84b6fae119278dd0e9ad4f5a313e16c9 | |
parent | 53c4c5672c2db81a2d85fcf4e8d95028fc0d535d (diff) |
Correct the configuration variable used to find the bin directory.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18244 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | tools/llvmc/st.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/llvmc/st.in b/tools/llvmc/st.in index 7683101128..0f66ddb169 100644 --- a/tools/llvmc/st.in +++ b/tools/llvmc/st.in @@ -25,7 +25,7 @@ # To compile stacker source, we just run the stacker # compiler with a default stack size of 2048 entries. - translator.command=@bindir@/stkrc -s 2048 %in% -f -o %out% %opt% \ + translator.command=@LLVM_BINDIR@/stkrc -s 2048 %in% -f -o %out% %opt% \ %time% %stats% %args% # stkrc doesn't preprocess but we set this to true so @@ -43,7 +43,7 @@ ########################################################## # For optimization, we use the LLVM "opt" program - optimizer.command=@bindir@/stkrc -s 2048 %in% -f -o %out% %opt% \ + optimizer.command=@LLVM_BINDIR@/stkrc -s 2048 %in% -f -o %out% %opt% \ %time% %stats% %args% optimizer.required = yes @@ -60,4 +60,4 @@ ########################################################## # Assembler definitions ########################################################## - assembler.command=llc %in% -o %out% %target% %time% %stats% + assembler.command=@LLVM_BINDIR@/llc %in% -o %out% %target% %time% %stats% |