[llvm-commits] CVS: llvm/tools/llvmc/cpp

Reid Spencer reid at x10sys.com
Sun Aug 29 23:32:34 PDT 2004



Changes in directory llvm/tools/llvmc:

cpp added (r1.1)
---
Log message:

Initial commit of a configuration file for compiling C++ programs with
the file name pattern *.cpp


---
Diffs of the changes:  (+61 -0)

Index: llvm/tools/llvmc/cpp
diff -c /dev/null llvm/tools/llvmc/cpp:1.1
*** /dev/null	Mon Aug 30 01:32:34 2004
--- llvm/tools/llvmc/cpp	Mon Aug 30 01:32:24 2004
***************
*** 0 ****
--- 1,61 ----
+ # Stacker Configuration File For llvmc
+ 
+ ##########################################################
+ # Language definitions
+ ##########################################################
+   lang.name=C++ 
+   lang.opt1=-O1
+   lang.opt2=-O2
+   lang.opt3=-O3
+   lang.opt4=-O3
+   lang.opt5=-O3
+ 
+ ##########################################################
+ # Pre-processor definitions
+ ##########################################################
+ 
+   # Stacker doesn't have a preprocessor but the following
+   # allows the -E option to be supported
+   preprocessor.command=g++ -E %in% -o %out% %incls% %defs%
+   preprocessor.required=false
+ 
+ ##########################################################
+ # Translator definitions
+ ##########################################################
+ 
+   # To compile stacker source, we just run the stacker
+   # compiler with a default stack size of 2048 entries.
+   translator.command=g++ -c -x c++ %in% -o %out% %opt% %incls% %libs% %defs%
+ 
+   # stkrc doesn't preprocess but we set this to true so
+   # that we don't run the cp command by default.
+   translator.preprocesses=true
+ 
+   # The translator is required to run.
+   translator.required=false
+ 
+   # stkrc doesn't handle the -On options
+   translator.output=bytecode
+ 
+ ##########################################################
+ # Optimizer definitions
+ ##########################################################
+   
+   # For optimization, we use the LLVM "opt" program
+   optimizer.command=g++ -c -x c++ %in% -o %out% %opt% %args% %incls% %libs% %defs%
+ 
+   optimizer.required = true
+ 
+   # opt doesn't translate
+   optimizer.translates = true
+ 
+   # opt doesn't preprocess
+   optimizer.preprocesses=true
+ 
+   # opt produces bytecode
+   optimizer.output = bc
+ 
+ ##########################################################
+ # Assembler definitions
+ ##########################################################
+   assembler.command=llc %in% -o %out% %target% %time% %stats%






More information about the llvm-commits mailing list