From: John Criswell Date: Mon, 26 Jan 2004 23:51:10 +0000 (+0000) Subject: Fixed PR#197. The libcrtend library is removed from the library linking list X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=commitdiff_plain;h=6f5592ae2c2289284a765d3205e4a0a65f328fce Fixed PR#197. The libcrtend library is removed from the library linking list when creating native executables. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10979 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/gccld/GenerateCode.cpp b/tools/gccld/GenerateCode.cpp index d41a1f15f24..d717cd5616a 100644 --- a/tools/gccld/GenerateCode.cpp +++ b/tools/gccld/GenerateCode.cpp @@ -239,8 +239,10 @@ GenerateNative(const std::string &OutputFilename, // Add in the libraries to link. std::vector 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);