vote up 1 vote down star

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.

flag

3 Answers

vote up 0 vote down check

Check out ANTLR library

link|flag
Did you mean ANTLR? – Alon Oct 21 at 19:05
Ohhhhhhhhhhhhhh yeaaaaaaaaaaaaaah! – Andrei Oct 21 at 19:45
vote up 0 vote down

Wouldn't this be a better link to ANTLR ?

There is also a tutorial

And at least one book

link|flag
This belong in the comment under my answer, genius. – Andrei Oct 21 at 21:01
I don't really understand, the ANTLR is translating my own language to another? – Alon Oct 22 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. – mgb Oct 22 at 13:27
vote up 0 vote down

LLVM can run under Visual Studio

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

Your Answer

Get an OpenID
or

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