mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-28 19:31:58 +00:00
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
This commit is contained in:
parent
f9c78655be
commit
6f5592ae2c
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user