Fixed -debuglib in LDMD.

This commit is contained in:
David Nadlinger
2012-09-06 03:39:41 +02:00
parent 6275c66a89
commit 05b9b14fa9

View File

@@ -775,7 +775,7 @@ void buildCommandLine(std::vector<const char*>& r, const Params& p)
pushSwitches("-d-version=", p.versionIdentifiers, r);
pushSwitches("-L=", p.linkerSwitches, r);
if (p.defaultLibName) r.push_back(concat("-defaultlib=", p.defaultLibName));
if (p.debugLibName) r.push_back(concat("-deps=", p.moduleDepsFile));
if (p.debugLibName) r.push_back(concat("-debuglib=", p.debugLibName));
if (p.hiddenDebugB) r.push_back("-hidden-debug-b");
if (p.hiddenDebugC) r.push_back("-hidden-debug-c");
if (p.hiddenDebugF) r.push_back("-hidden-debug-f");