Pass -f to stkrc to ensure the output file is always written.

llvm-svn: 17295
This commit is contained in:
Reid Spencer 2004-10-28 03:57:49 +00:00
parent 1002e454cb
commit ffe5f97f17
1 changed files with 4 additions and 4 deletions

View File

@ -25,8 +25,8 @@
# To compile stacker source, we just run the stacker
# compiler with a default stack size of 2048 entries.
translator.command=stkrc -s 2048 %in% -o %out% %opt% \
%time% %stats% %force% %args%
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.
@ -43,8 +43,8 @@
##########################################################
# For optimization, we use the LLVM "opt" program
optimizer.command=stkrc -s 2048 %in% -o %out% %opt% \
%time% %stats% %force% %args%
optimizer.command=stkrc -s 2048 %in% -f -o %out% %opt% \
%time% %stats% %args%
optimizer.required = yes