Mark Duckworth wrote:
Just worth nothing that you cannot debug a windom application unless you rebuild libwindom with -g -fomit-frame-pointer -O0.
I don't know if there is something special in Windom, but normally "-g" is enough to make debug builds. The flag -fomit-frame-pointer should be used for releases, but the frame pointer is useful for gdb, so this option should not be used in debug builds.
Then -O0 is the default optimization level, it should not be required. -- Vincent Rivière