Down the VisualD0.3.38-1.exe ,found virus!

Meta via Digitalmars-d-learn digitalmars-d-learn at puremagic.com
Sat May 10 09:48:23 PDT 2014


On Saturday, 10 May 2014 at 08:42:14 UTC, FrankLike wrote:
>
>> I've been using VisualD for a long time without problems. If 
>> it makes you nervous, you can get the source from Github and 
>> compile it yourself.
>
> Hello,Meta
>
> When I compile the Visual D projects:
>
> at first,I compile the 'build' project,then get some error:
>
>
> ------START ALL BUILD: PROJECT: c2d,  Debug Win32 ------
> Building ..\bin\Debug\c2d.lib...
> Build time: 1 s
> ------ START ALL BUILD: PROJECT: vsi2d,  Debug Win32 ------
> Building ..\bin\Debug\vsi2d.exe...
> Converting debug information...
> Build time: 1 s
> ------ START ALL BUILD: PROJECT: build, Debug Win32 ------
> Building ..\bin\Debug\build.sdk...
> 'C:\Program' is not recognized as an internal or external 
> command,
> operable program or batch file.
> Building ..\bin\Debug\dte_idl.success failed!
>
>
> Here is my VSSDK AND WINSDK:
> VSSDK100Install = C:\Program Files (x86)\Microsoft Visual 
> Studio 2010 SDK SP1
> WindowsSdkDir = C:\Program Files (x86)\Microsoft 
> SDKs\Windows\v7.0A
>
> How can I do?
>
> Thank you.

You have spaces in your path, which is not good. Put quotes 
around the file paths, like so:

VSSDK100Install = "C:\Program Files (x86)\Microsoft Visual Studio 
2010 SDK SP1"
WindowsSdkDir = "C:\Program Files (x86)\Microsoft 
SDKs\Windows\v7.0A"


More information about the Digitalmars-d-learn mailing list