Running `configure --enable-debug --enable-optimize` is not enabling optimizations. Concretely, running `../configure --enable-debug --enable-optimize` yields: ``` CFG_ENABLE_DEBUG := 1 ... CFG_DISABLE_OPTIMIZE := 1 CFG_DISABLE_OPTIMIZE_CXX := 1 ... CFG_CONFIGURE_ARGS := --enable-debug --enable-optimize ``` And, just out of curiosity, I tried switching the order of args; that made little difference: ``` CFG_ENABLE_DEBUG := 1 ... CFG_DISABLE_OPTIMIZE := 1 CFG_DISABLE_OPTIMIZE_CXX := 1 ... CFG_CONFIGURE_ARGS := --enable-optimize --enable-debug ```