Removed in favor of configurable (*.in) versions.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18185 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2004-11-23 23:38:07 +00:00
parent e9564cedb4
commit f1a889c99b
3 changed files with 0 additions and 136 deletions

View File

@ -1,61 +0,0 @@
# 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%

View File

@ -1,12 +0,0 @@
# LLVM Assembly Config File For llvmc
version="1.0"
lang.name=LLVM Assembly
preprocessor.command=
preprocessor.required=false
translator.command=llvm-as %in% -o %out%
translator.optimizes=no
translator.preprocesses=true
translator.required=TRUE
optimizer.command=opt %in% -o %out% %opt% %args%
optimizer.translates=no
assembler.command=llc %in% -o %out%

View File

@ -1,63 +0,0 @@
# Stacker Configuration File For llvmc
##########################################################
# Language definitions
##########################################################
lang.name=Stacker
lang.opt1=-O1
lang.opt2=-O2
lang.opt3=-O3
lang.opt4=-O4
lang.opt5=-O5
##########################################################
# Pre-processor definitions
##########################################################
# Stacker doesn't have a preprocessor but the following
# allows the -E option to be supported
preprocessor.command=cp %in% %out%
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=stkrc -s 2048 %in% -f -o %out% %opt% \
%time% %stats% %args%
# 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=stkrc -s 2048 %in% -f -o %out% %opt% \
%time% %stats% %args%
optimizer.required = yes
# opt doesn't translate
optimizer.translates = yes
# opt doesn't preprocess
optimizer.preprocesses=yes
# opt produces bytecode
optimizer.output = bc
##########################################################
# Assembler definitions
##########################################################
assembler.command=llc %in% -o %out% %target% %time% %stats%