diff --git a/History.txt b/History.txt index 3e78ed72e8a1165981e378ffd3708d5a31386490..5af71f78d8e8d2e749516a8e1ff40ffdf9a11543 100755 --- a/History.txt +++ b/History.txt @@ -1,6 +1,8 @@ === 1.6.32 / unreleased * Avoid call to rb_class2name() during GC. Fixes #21 +* Use release mode, unless extconf.rb is called with --enable-debug, + so that all FXTRACE() and FXASSERT() calls are skiped, per default. === 1.6.31 / 2015-07-21 diff --git a/ext/fox16_c/extconf.rb b/ext/fox16_c/extconf.rb index c7ef79ddab7cbd116325c6d419aabaea14d12326..5d6913c2488a46578f0d34e9bd60a603b6fe751f 100755 --- a/ext/fox16_c/extconf.rb +++ b/ext/fox16_c/extconf.rb @@ -230,6 +230,7 @@ def do_rake_compiler_setup "--without-x", "--enable-shared", "--disable-static", + enable_config("debug") ? "--enable-debug" : "--enable-release", ] class << recipe def compile @@ -390,6 +391,10 @@ unless enable_config("win32-cross") end end +unless enable_config("debug") + $CPPFLAGS += " -DNDEBUG" +end + # Platform-specific modifications do_rake_compiler_setup