Jump to page: 1 2
Thread overview
Down the VisualD0.3.38-1.exe ,found virus!
May 09, 2014
FrankLike
May 09, 2014
Jack
May 09, 2014
FrankLike
May 09, 2014
Meta
May 10, 2014
FrankLike
May 10, 2014
Meta
May 11, 2014
FrankLike
May 11, 2014
FrankLike
May 11, 2014
Rainer Schuetze
May 12, 2014
FrankLike
May 12, 2014
FrankLike
May 12, 2014
FrankLike
May 12, 2014
Rainer Schuetze
May 12, 2014
Rainer Schuetze
May 12, 2014
FrankLike
May 09, 2014
sigod
May 09, 2014
Orvid King
May 27, 2014
KarlHeesch
May 09, 2014
Hi,everyone,
down VisulaD from http://rainers.github.io/visuald/visuald/StartPage.html
found the virus:Win32.Troj.Undef.(kcloud)

Why?

Frank
May 09, 2014
On Friday, 9 May 2014 at 01:02:39 UTC, FrankLike wrote:
> Hi,everyone,
> down VisulaD from http://rainers.github.io/visuald/visuald/StartPage.html
> found the virus:Win32.Troj.Undef.(kcloud)
>
> Why?
>
> Frank

Most probably a false positive. What antivir do you use?
May 09, 2014
> Most probably a false positive. What antivir do you use?


http://www.ijinshan.com/duba/newduba.shtml
May 09, 2014
On Friday, 9 May 2014 at 01:02:39 UTC, FrankLike wrote:
> Hi,everyone,
> down VisulaD from http://rainers.github.io/visuald/visuald/StartPage.html
> found the virus:Win32.Troj.Undef.(kcloud)
>
> Why?
>
> Frank

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.
May 09, 2014
On Friday, 9 May 2014 at 01:02:39 UTC, FrankLike wrote:
> Hi,everyone,
> down VisulaD from http://rainers.github.io/visuald/visuald/StartPage.html
> found the virus:Win32.Troj.Undef.(kcloud)
>
> Why?
>
> Frank

https://www.virustotal.com/en/file/bbd76ddb41a80f0526f6cf1e37a2db2736cfa8f29ed3f5fd7a4336bf4c8bbe43/analysis/

Just 5 of 52. Probably a false alarm.
May 09, 2014
Trend Micro and Comodo have (from my limited experience) been pretty good about dealing with false positives, so does anyone want to inform them and the others as well?

On 5/8/14, sigod via Digitalmars-d-learn <digitalmars-d-learn@puremagic.com> wrote:
> On Friday, 9 May 2014 at 01:02:39 UTC, FrankLike wrote:
>> Hi,everyone,
>> down VisulaD from
>> http://rainers.github.io/visuald/visuald/StartPage.html
>> found the virus:Win32.Troj.Undef.(kcloud)
>>
>> Why?
>>
>> Frank
>
> https://www.virustotal.com/en/file/bbd76ddb41a80f0526f6cf1e37a2db2736cfa8f29ed3f5fd7a4336bf4c8bbe43/analysis/
>
> Just 5 of 52. Probably a false alarm.
>
May 10, 2014
> 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.
May 10, 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"
May 11, 2014

> 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"

Thank  you.
May 11, 2014
> 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"

Sorry,Meta,

the problem still exists,but I compile it by bat file.
Then I compile the Visual D, found the error :
[1] cannot read file port\sharedvenusids.d
[2] no file in 'sdk/win32'

------ start all build: project: vsi, Debug Win32 ------
Building ..\bin\Debug\vsi.lib...
Error: cannot read file port\sharedvenusids.d
Building ..\bin\Debug\vsi.lib failed!


Thank you,Meta
« First   ‹ Prev
1 2