Are there any Parsing Expression Grammar (PEG) C++ libraries for Windows? I’ve tried in vain to compile pegc/legc, pegc with MS Visual Studio. 🙁
Are there any Parsing Expression Grammar (PEG) C++ libraries for Windows? I’ve tried in
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I have had good luck with Boost.Spirit.Qi, which should work reasonably well with recent versions of the Microsoft compiler. Be forewarned, though: there is a learning curve.
If you just want a parser generator, also have a look at this related question: Is the ANTLR parser generator best for a C++ app with constrained memory?