Re: Compiler compiler with C++ as output

tom_usenet <tom_usenet@hotmail.com>
24 May 2004 00:30:39 -0400

          From comp.compilers

Related articles
Compiler compiler with C++ as output javaman@mail.ru (Andrey Batyuck) (2004-05-16)
Re: Compiler compiler with C++ as output thipse@sasken.com (Rajesh Thipse) (2004-05-24)
Re: Compiler compiler with C++ as output tom_usenet@hotmail.com (tom_usenet) (2004-05-24)
Re: Compiler compiler with C++ as output nicolas_capens@hotmail.com (2004-05-30)
| List of all articles for this month |

From: tom_usenet <tom_usenet@hotmail.com>
Newsgroups: comp.compilers
Date: 24 May 2004 00:30:39 -0400
Organization: Compilers Central
References: 04-05-049
Keywords: parse, C++
Posted-Date: 24 May 2004 00:30:39 EDT

On 16 May 2004 23:34:48 -0400, "Andrey Batyuck" <javaman@mail.ru>
wrote:


>Do you know any compiler compiler that can give output in C++? I
>would like to implement run-time scripting system in my system, and i
>am looking for fully object-oriented compiler compiler. So far i
>found only antlr. Any other suggestions?


Boost Spirit, which isn't a compiler compiler, but it allows you to
write a grammar directly using C++ code, using EBNF grammar-like
syntax. The implementation relies on advanced template techniques to
generate the parsing code.


See http://www.boost.org/libs/spirit/index.html and
http://spirit.sourceforge.net/


Tom
--
C++ FAQ: http://www.parashift.com/c++-faq-lite/
C FAQ: http://www.eskimo.com/~scs/C-faq/top.html


Post a followup to this message

Return to the comp.compilers page.
Search the comp.compilers archives again.