andreww / fox

A Fortran XML library
https://andreww.github.io/fox/
Other
59 stars 50 forks source link

ifort 11 issues #5

Open andreww opened 14 years ago

andreww commented 14 years ago

(a) All versions of ifort 11.1 fail to compile the sax module with an internal compiler error. (b) wxml/wcml will compile, but most tests fail with an error from the runtime complaining about deallocation of unallocated data.

andreww commented 14 years ago

Apparently (a) will be fixed by the first release of 2010 (see http://groups.google.com/group/fox-discuss/browse_thread/thread/15351ce51a3d9f12?hl=en ) but we will end up with a new problem (call it c) with an ICE in m_dom_dom.

(b) really looks like a compiler bug, sometimes vs_str_alloc does not do the allocation to a pointer in a derived type (but will allocate to a temp pointer of the same type, which then becomes unallocated on copy). I need to create a (short) example for this.