diff options
author | Nate Begeman <natebegeman@mac.com> | 2005-07-08 00:23:26 +0000 |
---|---|---|
committer | Nate Begeman <natebegeman@mac.com> | 2005-07-08 00:23:26 +0000 |
commit | b62a4c8da682ae31258f335190e4a29c6f840ff5 (patch) | |
tree | 2324333f2895cba8ee4168252837960f6c8d313d /llvm/lib/Support | |
parent | 17c1bd372ad303bf47f4727915638316a8712bd3 (diff) | |
download | bcm5719-llvm-b62a4c8da682ae31258f335190e4a29c6f840ff5.tar.gz bcm5719-llvm-b62a4c8da682ae31258f335190e4a29c6f840ff5.zip |
Add support for assembling .s files on mac os x for intel
Add support for running bugpoint on mac os x for intel
llvm-svn: 22351
Diffstat (limited to 'llvm/lib/Support')
-rw-r--r-- | llvm/lib/Support/ToolRunner.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/ToolRunner.cpp b/llvm/lib/Support/ToolRunner.cpp index 4a08e1adc76..3cea3386dbb 100644 --- a/llvm/lib/Support/ToolRunner.cpp +++ b/llvm/lib/Support/ToolRunner.cpp @@ -441,7 +441,7 @@ int GCC::MakeSharedObject(const std::string &InputFile, FileType fileType, InputFile.c_str(), // Specify the input filename... #if defined(sparc) || defined(__sparc__) || defined(__sparcv9) "-G", // Compile a shared library, `-G' for Sparc -#elif (defined(__POWERPC__) || defined(__ppc__)) && defined(__APPLE__) +#elif defined(__APPLE__) "-single_module", // link all source files into a single module "-dynamiclib", // `-dynamiclib' for MacOS X/PowerPC "-undefined", // in data segment, rather than generating |