Changes in directory llvm/tools/bugpoint:
ToolRunner.cpp updated: 1.52 -> 1.53 --- Log message: After telling GCC to type of the input file with -x asm/-x c, switch back to -x none, to not foul up autodetection of .a file or .dylibs. --- Diffs of the changes: (+2 -0) ToolRunner.cpp | 2 ++ 1 files changed, 2 insertions(+) Index: llvm/tools/bugpoint/ToolRunner.cpp diff -u llvm/tools/bugpoint/ToolRunner.cpp:1.52 llvm/tools/bugpoint/ToolRunner.cpp:1.53 --- llvm/tools/bugpoint/ToolRunner.cpp:1.52 Tue Jun 6 17:30:59 2006 +++ llvm/tools/bugpoint/ToolRunner.cpp Fri Jun 9 16:31:53 2006 @@ -405,6 +405,8 @@ #endif } GCCArgs.push_back(ProgramFile.c_str()); // Specify the input filename... + GCCArgs.push_back("-x"); + GCCArgs.push_back("none"); GCCArgs.push_back("-o"); sys::Path OutputBinary (ProgramFile+".gcc.exe"); OutputBinary.makeUnique(); _______________________________________________ llvm-commits mailing list llvm-commits@cs.uiuc.edu http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits