Also pass -gcc-tool-args when building a shared object.

llvm-svn: 66746
This commit is contained in:
Evan Cheng 2009-03-12 00:53:34 +00:00
parent 83e9e91479
commit 690b635aa6
1 changed files with 5 additions and 2 deletions

View File

@ -672,6 +672,9 @@ int GCC::MakeSharedObject(const std::string &InputFile, FileType fileType,
GCCArgs.push_back(GCCPath.c_str()); GCCArgs.push_back(GCCPath.c_str());
for (std::vector<std::string>::const_iterator
I = gccArgs.begin(), E = gccArgs.end(); I != E; ++I)
GCCArgs.push_back(I->c_str());
// Compile the C/asm file into a shared object // Compile the C/asm file into a shared object
GCCArgs.push_back("-x"); GCCArgs.push_back("-x");