pipedmd -msmode Should be the default

sdvcn via Digitalmars-d-ide digitalmars-d-ide at puremagic.com
Fri Dec 5 02:04:42 PST 2014


Certain probability utf-8 errors.

pipedmd.d

if(!linkerFound)
{
     if (output.startsWith("OPTLINK (R)"))
         linkerFound = true;
     else if(output.countUntil("error LNK") >= 0 || 
output.countUntil("warning LNK") >= 0) // <-- utf-8 error
         linkerFound = msMode = true;
}

my chinese os,link info "错误 LNK" or "警告 LNK"


config.d

if(performLink && Package.GetGlobalOptions().demangleError)
	cmd = "\"$(VisualDInstallDir)pipedmd.exe\" " ~ cmd; // <-- no 
set msmode

I can not find where to set "msmode"


More information about the Digitalmars-d-ide mailing list