Home | History | Annotate | Download | only in utils

Lines Matching refs:OutputFile

36 		$OutputFile = $ARGV[$i + 1];
108 my ($BCFile, $Backend, $OutputFile) = @_;
113 $GeneratedCode = "${OutputFile}.c";
120 $GeneratedCode = "${OutputFile}.s";
128 run "gcc $GCCOptions $GeneratedCode -o $OutputFile $LibDirs $Libs";
134 my ($LLVMGCCCommand, $Backend, $OutputFile) = @_;
139 my $BCFile = "${OutputFile}.llvm.bc";
141 run "mv ${OutputFile} $BCFile";
143 run "mv ${OutputFile}.bc $BCFile";
147 $GeneratedCode = "${OutputFile}.cbe.c";
150 $GeneratedCode = "${OutputFile}.llc.s";
157 run "gcc $NativeGCCOptions $GeneratedCode -o $OutputFile";
158 run "rm ${OutputFile}.llvm.bc $GeneratedCode"
163 $OutputFile = GetDefaultOutputFileName () unless $OutputFile;
164 print "Output file is $OutputFile\n" if $Verbose;
168 CompileBytecodeToNative ($LinkedBCFile, $Backend, $OutputFile);
172 CompileCToNative ($LLVMGCCCommand, $Backend, $OutputFile);