mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-05 17:43:35 +03:00
Merge 2.078.0 front-end and stdlibs
This commit is contained in:
parent
f338b559ff
commit
cfad799f48
203 changed files with 9174 additions and 8166 deletions
|
@ -98,7 +98,7 @@ int linkObjToBinaryMSVC(llvm::StringRef outputPath, bool useInternalLinker,
|
|||
args.push_back(("/OUT:" + outputPath).str());
|
||||
|
||||
// object files
|
||||
for (auto objfile : *global.params.objfiles) {
|
||||
for (auto objfile : global.params.objfiles) {
|
||||
args.push_back(objfile);
|
||||
}
|
||||
|
||||
|
@ -122,7 +122,7 @@ int linkObjToBinaryMSVC(llvm::StringRef outputPath, bool useInternalLinker,
|
|||
}
|
||||
|
||||
// user libs
|
||||
for (auto libfile : *global.params.libfiles) {
|
||||
for (auto libfile : global.params.libfiles) {
|
||||
args.push_back(libfile);
|
||||
}
|
||||
|
||||
|
@ -143,7 +143,7 @@ int linkObjToBinaryMSVC(llvm::StringRef outputPath, bool useInternalLinker,
|
|||
addSwitch(str);
|
||||
}
|
||||
|
||||
for (auto ls : *global.params.linkswitches) {
|
||||
for (auto ls : global.params.linkswitches) {
|
||||
addSwitch(ls);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue