Re: dmd 2.065 beta 2

2014-01-30 Thread Manu
On 29 January 2014 14:33, Brad Anderson  wrote:

> On Wednesday, 29 January 2014 at 00:41:46 UTC, Manu wrote:
>
>> I had an issue with the windows installer.
>> It didn't remember where my existing D installation was, and tried to
>> installer it somewhere else by default.
>> It should remember where I installed it last time and upgrade the existing
>> installation.
>>
>
> The Window installer here doesn't actually work because the URL
> is wrong. You're just using your previous installation.
>

I'm having another trouble with the installer on Win8.1 + VS2013

The installer produces lines in sc.ini:
  WindowsSdkDir=C:\Program Files (x86)\Windows Kits\8.1\

and lower:
  ; Platform libraries (Windows SDK 8)
  LIB=%LIB%;"%WindowsSdkDir%\Lib\win8\um\x64"

WindowsSdkDir is correct, it seems to have found the proper folder for
Win8.1, but the LIB path is wrong. That path is correct for "Windows
Kits\8.0", but it's been moved under 8.1, the proper path for the 8.1 libs
is: "Windows Kits\8.1\Lib\winv6.3\um\x64"

Seems 'win8' becomes 'winv6.3' under 8.1 for some reason...


OSCON speaking proposals due at midnight tonight!

2014-01-30 Thread Walter Bright
Lots of you have submitted speaking proposals for Dconf 2014. There's no reason 
whatsoever you can't present the same thing at OSCON, or even what you did for 
Dconf 2013.


http://www.oscon.com/oscon2014

What are you waiting for?


Re: DCD 0.3.0-beta1 and DScanner 0.1.0-beta1

2014-01-30 Thread Jussi Jumppanen

On Tuesday, 28 January 2014 at 09:58:27 UTC, Brian Schott wrote:


New DCD and DScanner betas are  ready for testing.


The Zeus IDE dot completion, parenthesis completion and goto 
declaration scripts have been updated and are all working fine 
with this latest DCD release.


As yet there is no script for the new DCD Doc Comment display 
feature.


For more details see here: 
http://www.zeusedit.com/zforum/viewtopic.php?t=7020




Re: [Mono-D] Debugger also available on Windows

2014-01-30 Thread Alexander Bothe

Now I gotta see how it's performing on Windows..


539ms without skipping function bodies
150ms with skipping them. Quite nice imho.


[Mono-D] Debugger also available on Windows

2014-01-30 Thread Alexander Bothe

Hi everyone,

There's debugging functionality in Mono-D on Windows (again - 
after ~2 years of not having maintained it) now.


The blog post (+ screenshot):
http://mono-d.alexanderbothe.com/revived-debugging-on-windows/



Further thanks go out to Orvid who has spent some efforts in 
improving the overall performance of the D parser:


std.datetime takes
602ms for being parsed now on Linux while not skipping function 
bodies,
200ms with skipping them (which is done normally for Ram&Startup 
time savings).


Now I gotta see how it's performing on Windows..


Re: New debugger for D!!!

2014-01-30 Thread Martin Nowak

On 01/29/2014 07:37 AM, Sarath Kodali wrote:

Thanks for the link, I will take a look. Is this a working debugger?


Kind of ;), I'm not the original author, but I fixed the build and tried 
to improve it a little. Although I no longer plan to work on this,
the existing code might be helpful because it's a fairly 
simple/straightforward implementation.


Re: DCD 0.3.0-beta1 and DScanner 0.1.0-beta1

2014-01-30 Thread Brian Schott
On Thursday, 30 January 2014 at 13:07:33 UTC, Casper Færgemand 
wrote:
On Thursday, 30 January 2014 at 13:02:53 UTC, Casper Færgemand 
wrote:
Is it possible to get an updated build.bat file that doesn't 
rely on 64bit? There also seems to be files mentioned in the 
script that don't exist anymore.


And that would be "style.d". After removing it from the script 
along with "-m64", I get this:


Try again now.

https://github.com/Hackerpilot/Dscanner/issues/90


Re: DCD 0.3.0-beta1 and DScanner 0.1.0-beta1

2014-01-30 Thread Casper Færgemand
On Thursday, 30 January 2014 at 13:02:53 UTC, Casper Færgemand 
wrote:
Is it possible to get an updated build.bat file that doesn't 
rely on 64bit? There also seems to be files mentioned in the 
script that don't exist anymore.


And that would be "style.d". After removing it from the script 
along with "-m64", I get this:


$ build.bat
OPTLINK (R) for Win32  Release 8.00.13
Copyright (C) Digital Mars 1989-2010  All rights reserved.
http://www.digitalmars.com/ctg/optlink.html
dscanner.obj(dscanner)
 Error 42: Symbol Undefined 
_D8analysis3run7analyzeFS3std5stdio4FileAAyabZv

dscanner.obj(dscanner)
 Error 42: Symbol Undefined 
_D8analysis3run11syntaxCheckFS3std5stdio4FileAAyaZv

dscanner.obj(dscanner)
 Error 42: Symbol Undefined _D8analysis3run12__ModuleInfoZ
--- errorlevel 3


Re: DCD 0.3.0-beta1 and DScanner 0.1.0-beta1

2014-01-30 Thread Casper Færgemand
Is it possible to get an updated build.bat file that doesn't rely 
on 64bit? There also seems to be files mentioned in the script 
that don't exist anymore.


Re: DCD 0.3.0-beta1 and DScanner 0.1.0-beta1

2014-01-30 Thread Andrea Fontana

On Tuesday, 28 January 2014 at 09:58:27 UTC, Brian Schott wrote:
New DCD and DScanner betas are  ready for testing. The tags can 
be found here:


https://github.com/Hackerpilot/DCD/tree/0.3.0-beta1
https://github.com/Hackerpilot/Dscanner/tree/0.1.0-beta1
[...]


On github i read:

"Import paths can be added to the server without restarting it. 
To accomplish this, run the client with the -I option"


Is there a way to remove or set include paths too?




Re: DCD 0.3.0-beta1 and DScanner 0.1.0-beta1

2014-01-30 Thread Jussi Jumppanen

On Thursday, 30 January 2014 at 04:18:12 UTC, Rory McGuire wrote:


Could you try build with the dmd beta?


The latest beta produced the same results.

But with help form Brian Schott it turns out it just takes a lot 
longer to compile that one lexer.d file.


So the fix is to just be very patient ;)

For anyone that might be interested, I added some more details to 
the DCD bug report:


https://github.com/Hackerpilot/DCD/issues/93