Source transformation for D

2014-07-03 Thread Kashyap via Digitalmars-d-learn

Hi,
Is there a source transformation for D available?
Could someone please point me to it?

If not, I'd like to work on one - I'd appreciate any pointers on 
getting started. I am considering writing the whole thing in D 
and not relying the lexer/parser in C that is already there.


Regards,
Kashyap


Re: Source transformation for D

2014-07-03 Thread Kashyap via Digitalmars-d-learn

On Thursday, 3 July 2014 at 10:23:31 UTC, ponce wrote:

On Thursday, 3 July 2014 at 10:17:59 UTC, Kashyap wrote:

Hi,
Is there a source transformation for D available?
Could someone please point me to it?

If not, I'd like to work on one - I'd appreciate any pointers 
on getting started. I am considering writing the whole thing 
in D and not relying the lexer/parser in C that is already 
there.


Regards,
Kashyap


https://github.com/Hackerpilot/Dscanner
https://github.com/deadalnix/SDC


Thank you Ponce.
Regards,
Kashyap


Building D on windows

2014-07-02 Thread Kashyap via Digitalmars-d-learn

Hi,
I was able to build dmd on my windows machine using VS2013 (using 
the vs2010 sln file). However, I am not sure how to proceed with 
building the druntime and phobos. Could someone please point me 
to instructions for the same?


I tried the following

1. Downloaded make and shell (digital mars)
2. created a shell file script.sh that contains the following
make -f posix.mak 
DMD=../dmd/src/vcbuild/Win32/Release/dmd_msc.exe\

3. Executed the sh file shell script.sh

I got the following error -
C:\Users\labuser\dlang\druntimedir 
..\dmd\src\vcbuild\Win32\Release\dmd_msc.exe



C:\Users\labuser\dlang\druntimeshell script.sh
shell 1.01
make -f posix.mak DMD=../dmd/src/vcbuild/Win32/Release/dmd_msc.exe
Error on line 10: '=' is not a valid filename char

--- errorlevel 1

Regards,
Kashyap