pipedmd -msmode Should be the default

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


On Friday, 5 December 2014 at 10:04:43 UTC, sdvcn wrote:
> 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"

win32:(OPTLINK (R) for Win32  Release 8.00.15)
not set "Demangle names in link errors" Unable to import lib path 
.
if set "Demangle names in link errors". Can be compiled

x64:(Microsoft (R) Incremental Linker Version 12.00.30324.0)
not set "Demangle names in link errors" .Can be compiled

if set "Demangle names in link errors". Certain probability utf-8 
errors.

std.utf.UTFException at m:\s\d\rainers\phobos\std\utf.d(1109): 
Invalid UTF-8 sequence (at index 1)
----------------




More information about the Digitalmars-d-ide mailing list