In both the linux and Windows distro, I'm having an issue exporting a large pdf (38.1 MB) to XML. In Linux I get:
terminate called after throwing an instance of 'St9bad_alloc'
what(): std::bad_alloc
Aborted
In Windows I get:
This application has requested the Runtime to terminate it in an unusual way. Please contact the application's support team for information
Anonymous
You can try with the option --cutPages. This will generate one XML file per page, and it usually fixes this memory issue (the generated DOM file is too large)
Let me know