[llvm-commits] CVS: llvm/tools/llvmc/st.in

Reid Spencer reid at x10sys.com
Thu Nov 25 01:36:39 PST 2004



Changes in directory llvm/tools/llvmc:

st.in updated: 1.1 -> 1.2
---
Log message:

Correct the configuration variable used to find the bin directory.


---
Diffs of the changes:  (+3 -3)

Index: llvm/tools/llvmc/st.in
diff -u llvm/tools/llvmc/st.in:1.1 llvm/tools/llvmc/st.in:1.2
--- llvm/tools/llvmc/st.in:1.1	Tue Nov 23 17:33:08 2004
+++ llvm/tools/llvmc/st.in	Thu Nov 25 03:36:28 2004
@@ -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%






More information about the llvm-commits mailing list