mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-05 17:43:35 +03:00
Fix #135 – -o- broken with LDMD.
This commit is contained in:
parent
0d7c0869a5
commit
f6d07ba0b3
1 changed files with 1 additions and 1 deletions
|
@ -744,7 +744,7 @@ void buildCommandLine(std::vector<const char*>& r, const Params& p)
|
|||
if (p.warnings == Warnings::asErrors) r.push_back("-w");
|
||||
else if (p.warnings == Warnings::informational) r.push_back("-wi");
|
||||
if (p.optimize) r.push_back("-O2");
|
||||
if (p.noObj) r.push_back("-c-");
|
||||
if (p.noObj) r.push_back("-o-");
|
||||
if (p.objDir) r.push_back(concat("-od=", p.objDir));
|
||||
if (p.objName) r.push_back(concat("-of=", p.objName));
|
||||
if (p.preservePaths) r.push_back("-op");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue