![](https://secure.gravatar.com/avatar/eb3fe37da4a199eb4e3b479d8a57f808.jpg?s=120&d=mm&r=g)
24 Dec
2003
24 Dec
'03
3:32 a.m.
On Tue, 2003-12-23 at 21:48, bulia byak wrote:
...and where to look up these? My Makefile has some KDE_CFLAGS, NOOPT_CFLAGS etc. but no simple CFLAGS.
I really meant what CFLAGS or CXXFLAGS you specified at ./configure time. If you don't specify, by default it is "-g -O2", I believe.
The first thing to do is see if you can reproduce the bug with optimzation turned off. To do this, do a 'make distclean' and rerun configure like this:
CXXFLAGS="-g" ./configure
If Inkscape built like this does not exhibit the bug, then we can confirm that the bug is specifically with the compiler's optimizer.
-mental