up vote 2 down vote favorite
share [g+] share [fb]

I've to implement my custom native-compiled Windows programming language. Is there an easier way then translating it to ASM, or translating it to C/C++ and then use a C/C++ compiler? Is there any SDK or something?

Thank you.

link|improve this question

feedback

3 Answers

up vote 0 down vote accepted

Check out ANTLR library

link|improve this answer
Did you mean ANTLR? – Alon Gubkin Oct 21 '09 at 19:05
Ohhhhhhhhhhhhhh yeaaaaaaaaaaaaaah! – vehomzzz Oct 21 '09 at 19:45
feedback

Wouldn't this be a better link to ANTLR ?

There is also a tutorial

And at least one book

link|improve this answer
This belong in the comment under my answer, genius. – vehomzzz Oct 21 '09 at 21:01
I don't really understand, the ANTLR is translating my own language to another? – Alon Gubkin Oct 22 '09 at 11:46
Yes it handles all the details of parsing your language and then by generating C/python etc it also saves you dealing with the details of assembler on your platform. It's a replacemnet for YACC/Lex etc. – Martin Beckett Oct 22 '09 at 13:27
feedback

LLVM can run under Visual Studio

link|improve this answer
this is one is not bad either, though pales in comparison to my answer!! – vehomzzz Oct 21 '09 at 21:01
@Andrei, i wasn't going to mention ANTLR since you did it, but LLVM is a good alternative. – LB . Oct 22 '09 at 13:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.