@rwo
Yes, I examined the code now, and there is something like that in the structure causing the crash:
UBYTE8 ...;
ULONG ...;
float ...;
so the float ends up on a non-aligned address, which after what you wrote is a problem.
I added -mstrict-align to the compile but not to the link, this did not help (do I need to add it to the link as well?)
Now I am trying something else: Including 3 Pad-Bytes after the UBYTE
Just hope such a problem is not at a different location as well!
I will also phone Thomas Frieden at some times and ask him if he has a suggestion, though
Steffen