JSON parser for C ++ on ARM?

I need a C / C ++ JSON parser that works reliably on ARM. Currently using libjson, which works fine on x86, but segfaults on ARM.

Suggestions?

+4
source share
1 answer

I got lucky with jsoncpp, a C ++ parser .

These are just a few source files, so you can simply compile them directly in your project. The only condition is the DOM parser, not SAX, but that should be fine if you don't parse huge json files. We successfully integrated it into our engine for mobile games (hands) without any problems.

+2
source

All Articles