LDMD: Fix -deps generation.

This commit is contained in:
David Nadlinger
2013-01-04 11:22:56 +01:00
parent 859177fe3d
commit 43ca6a9581

View File

@@ -800,6 +800,7 @@ void buildCommandLine(std::vector<const char*>& r, const Params& p)
pushSwitches("-L=", p.linkerSwitches, r);
if (p.defaultLibName) r.push_back(concat("-defaultlib=", p.defaultLibName));
if (p.debugLibName) r.push_back(concat("-debuglib=", p.debugLibName));
if (p.moduleDepsFile) r.push_back(concat("-deps=", p.moduleDepsFile));
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");