non-debug builds get -O2 for impressive bitset speedups

This commit is contained in:
nick
2013-07-24 12:34:36 +01:00
parent efe9eaef7c
commit 14db3315ca

View File

@@ -43,6 +43,8 @@ TEST_MODULES = Dir["tests/unit/check_*.c"].map { |n|
if DEBUG
LDFLAGS << ["-g"]
CCFLAGS << ["-g -DDEBUG"]
else
CCFLAGS << "-O2"
end
desc "Build the binary and man page"