summaryrefslogtreecommitdiff
path: root/tools/bugpoint/ToolRunner.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-01-17 00:40:24 +0000
committerChris Lattner <sabre@nondot.org>2006-01-17 00:40:24 +0000
commit4df8665bf90e6a7631c9dec36c259e9daf46bfd6 (patch)
tree91d9d09197302429f9b887032901008179fb0f98 /tools/bugpoint/ToolRunner.cpp
parent2059f884aaf62b85db25dd3e7a0cf8375a448dd4 (diff)
downloadllvm-4df8665bf90e6a7631c9dec36c259e9daf46bfd6.tar.gz
llvm-4df8665bf90e6a7631c9dec36c259e9daf46bfd6.tar.bz2
llvm-4df8665bf90e6a7631c9dec36c259e9daf46bfd6.tar.xz
Revert this, I didn't mean to commit it
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25382 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/bugpoint/ToolRunner.cpp')
-rw-r--r--tools/bugpoint/ToolRunner.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/tools/bugpoint/ToolRunner.cpp b/tools/bugpoint/ToolRunner.cpp
index 5eb763a88a..6480c23cd8 100644
--- a/tools/bugpoint/ToolRunner.cpp
+++ b/tools/bugpoint/ToolRunner.cpp
@@ -394,15 +394,7 @@ int GCC::ExecuteProgram(const std::string &ProgramFile,
sys::Path OutputBinary (ProgramFile+".gcc.exe");
OutputBinary.makeUnique();
GCCArgs.push_back(OutputBinary.c_str()); // Output to the right file...
- GCCArgs.push_back("-lz");
GCCArgs.push_back("-lm"); // Hard-code the math library...
- GCCArgs.push_back("-x");
- GCCArgs.push_back("none");
- GCCArgs.push_back("/usr/local/lib/NAGWare/quickfit.o");
- GCCArgs.push_back("-Xlinker");
- GCCArgs.push_back("-flat_namespace");
- GCCArgs.push_back("/usr/local/lib/NAGWare/libf97.dylib");
- GCCArgs.push_back("/usr/local/lib/NAGWare/libf96.a");
GCCArgs.push_back("-O2"); // Optimize the program a bit...
#if defined (HAVE_LINK_R)
GCCArgs.push_back("-Wl,-R."); // Search this dir for .so files