mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-02-24 15:43:14 +01:00
Remove leftover D1-only comment.
This commit is contained in:
@@ -878,9 +878,6 @@ void buildCommandLine(std::vector<const char*>& r, const Params& p)
|
||||
if (p.emitSharedLib) r.push_back("-shared");
|
||||
if (p.pic) r.push_back("-relocation-model=pic");
|
||||
if (p.emitMap) warning("Map file generation not yet supported by LDC.");
|
||||
// LDMD historically did not enable singleobj mode, so in order not to
|
||||
// break build systems as a D1 parting gift, don't change this right now.
|
||||
// This might change based on user feedback, though.
|
||||
if ((!p.multiObj && !p.compileOnly) || p.objName) r.push_back("-singleobj");
|
||||
if (p.debugInfo == Debug::normal) r.push_back("-g");
|
||||
else if (p.debugInfo == Debug::pretendC) r.push_back("-gc");
|
||||
|
||||
Reference in New Issue
Block a user