Fixed PR#197. The libcrtend library is removed from the library linking list

when creating native executables.

llvm-svn: 10979
This commit is contained in:
John Criswell 2004-01-26 23:51:10 +00:00
parent 2edea847fc
commit 36eebb51f2
1 changed files with 4 additions and 2 deletions

View File

@ -239,8 +239,10 @@ GenerateNative(const std::string &OutputFilename,
// Add in the libraries to link.
std::vector<std::string> Libs(Libraries);
for (unsigned index = 0; index < Libs.size(); index++) {
Libs[index] = "-l" + Libs[index];
cmd.push_back(Libs[index].c_str());
if (Libs[index] != "crtend") {
Libs[index] = "-l" + Libs[index];
cmd.push_back(Libs[index].c_str());
}
}
cmd.push_back(NULL);