search for: ddebug_rwt

Displaying 1 result from an estimated 1 matches for "ddebug_rwt".

2004 Jun 24
0
[SOLVED] GET_DIM() crash on Windows only
...Anything blatantly >wrong? Suggestions? The culprit of my troubles turned out to be the GCC compiler option '-ansi' in "src/Makevars". Why this causes a problem is not known at this time. My Makevars for the example program was as below: PKG_CFLAGS=-Wall -ansi -pedantic -DDEBUG_RWT -I./ PKG_LIBS=-lm Creating a Windows-specific config file "src/Makevars.win" without that option solves the problem. PKG_CFLAGS=-Wall -pedantic -DDEBUG_RWT -I./ PKG_LIBS=-lm Many thanks to Uwe Ligges for figuring out the cause. ---------------------------------------------...