DConf 2014 Day 2 Talk 4: Reducing D Bugs by Vladimir Panteleev

Rainer Schuetze via Digitalmars-d-announce digitalmars-d-announce at puremagic.com
Sun Jul 13 11:03:14 PDT 2014



On 13.07.2014 19:35, Trass3r wrote:
> Digger is awesome. Have never heard of it before this talk.
>
> Unfortunately it's a huge PITA to get a Win64 build with it cause of
> those stupid hardcoded "\Program Files (x86)\Microsoft Visual Studio
> 10.0\VC" paths. The modified makefiles etc are always reverted by Digger
> before building.

You can add the compiler to the make command line with some magic quoting.

My build script calls

druntime:
make -f win64.mak DMD=../windows/bin/dmd.exe 
"CC=\"c:\l\vc10\bin64\cl.exe\"" target

phobos:
make -f win64.mak DMD=../windows/bin/dmd.exe 
"CC=\"c:\l\vc10\bin64\cl.exe\"" MAKE=c:\l\dmc\bin\make 
"AR=\"c:/l/vc10/bin64/lib.exe\"" LIB=..\lib64\phobos64.lib


More information about the Digitalmars-d-announce mailing list