Home | History | Annotate | Download | only in utils

Lines Matching defs:run

84 # run a command, optionally echoing, and quitting if it fails:
85 sub run {
103 run "llvm-link -o $LinkedBCFile $BCFiles";
117 run "llc -enable-correct-eh-support -march=c -f -o $GeneratedCode $BCFile";
124 run "llc -enable-correct-eh-support -f -o $GeneratedCode $BCFile";
128 run "gcc $GCCOptions $GeneratedCode -o $OutputFile $LibDirs $Libs";
129 run "rm $BCFile $GeneratedCode"
135 run $LLVMGCCCommand;
141 run "mv ${OutputFile} $BCFile";
143 run "mv ${OutputFile}.bc $BCFile";
148 run "llc -enable-correct-eh-support -march=c -f -o $GeneratedCode $BCFile";
151 run "llc -enable-correct-eh-support -f -o $GeneratedCode $BCFile";
157 run "gcc $NativeGCCOptions $GeneratedCode -o $OutputFile";
158 run "rm ${OutputFile}.llvm.bc $GeneratedCode"