Configuring optimization for debug builds for Windows

Hey everyone,

I am trying to build version 5.32.03 in cygwin in debug mode with optimizations turned on using the visual studio compilers. I was wondering what commands I need to use?

From,
Tyler

Hi Tyler,

You can build in debug mode, without the debug runtime libraries by using these configure flags:

You can also (using the same configure flags) try to create a MyConfig.mk in $ROOTSYS containing the following statements:

CXXFLAGS += -O2 CFLAGS += -O2
Cheers, Bertrand.