From b3d8c497e1170523f19fcf0a6631f0b67ab3a0aa Mon Sep 17 00:00:00 2001 From: David Nadlinger Date: Sat, 7 Sep 2013 22:14:07 +0200 Subject: [PATCH] Remove leftover D1-only comment. --- driver/ldmd.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/driver/ldmd.cpp b/driver/ldmd.cpp index 53bb247d..34d94e6f 100644 --- a/driver/ldmd.cpp +++ b/driver/ldmd.cpp @@ -878,9 +878,6 @@ void buildCommandLine(std::vector& 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");