-
Version 1.13 seems to work. Thanks!
2009-05-26 06:57:40 UTC in RapidXml
-
Thanks Marcin!
The server is equipped with SPARC processors. It indeed looks like an alignment problem because I found that I can also generate a crash with the Sun C++ compiler by controlling its alignment assumptions and runtime behavior with the -xmemalign option:
http://docs.sun.com/source/819-3690/Comp_Options_App.html#pgfId-1012560
If I specify that a SIGSEGV should be generated...
2009-04-27 06:55:53 UTC in RapidXml
-
I'm having a problem with RapidXML 1.12 on Solaris 10 with GCC 3.4.3. The following code triggers a segfault:
#include "rapidxml.hpp"
int main()
{
using namespace rapidxml;
xml_document<> doc;
// OK
{
char* s = doc.allocate_string("abc");
xml_node<>* n = doc.allocate_node(node_element,
2009-04-23 14:26:50 UTC in RapidXml