diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-09-04 17:29:45 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-09-04 17:29:45 +0200 |
commit | b379f35f4f09ef8241d109419238cbac6e036bbd (patch) | |
tree | 8c31b9f88257ab9b3b812555e77374cf6b0df99e | |
parent | Fixed FS #243, server crash after restart. The blockhandler table and the itemhandler table weren't properly re-initialized. (diff) | |
download | cuberite-b379f35f4f09ef8241d109419238cbac6e036bbd.tar cuberite-b379f35f4f09ef8241d109419238cbac6e036bbd.tar.gz cuberite-b379f35f4f09ef8241d109419238cbac6e036bbd.tar.bz2 cuberite-b379f35f4f09ef8241d109419238cbac6e036bbd.tar.lz cuberite-b379f35f4f09ef8241d109419238cbac6e036bbd.tar.xz cuberite-b379f35f4f09ef8241d109419238cbac6e036bbd.tar.zst cuberite-b379f35f4f09ef8241d109419238cbac6e036bbd.zip |
Diffstat (limited to '')
-rw-r--r-- | GNUmakefile | 8 | ||||
-rw-r--r-- | source/Globals.h | 6 |
2 files changed, 7 insertions, 7 deletions
diff --git a/GNUmakefile b/GNUmakefile index 081513c24..3c0da26db 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -39,8 +39,8 @@ ifeq ($(release),1) ################
# release build - fastest run-time, no gdb support
################
-CC_OPTIONS = -s -O3
-CXX_OPTIONS = -s -O3
+CC_OPTIONS = -s -O3 -DNDEBUG
+CXX_OPTIONS = -s -O3 -DNDEBUG
LNK_OPTIONS = -lstdc++ -pthread -O3
BUILDDIR = build/release/
@@ -49,8 +49,8 @@ ifeq ($(profile),1) ################
# profile build - a release build with symbols and profiling engine built in
################
-CC_OPTIONS = -s -ggdb -O3 -pg
-CXX_OPTIONS = -s -ggdb -O3 -pg
+CC_OPTIONS = -s -ggdb -O3 -pg -DNDEBUG
+CXX_OPTIONS = -s -ggdb -O3 -pg -DNDEBUG
LNK_OPTIONS = -lstdc++ -pthread -ggdb -O3 -pg
BUILDDIR = build/profile/
diff --git a/source/Globals.h b/source/Globals.h index 9ea0825c1..1a4a361ee 100644 --- a/source/Globals.h +++ b/source/Globals.h @@ -187,10 +187,10 @@ typedef short Int16; #define FAST_FLOOR_DIV( x, div ) ( (x) < 0 ? (((int)x / div) - 1) : ((int)x / div) ) // Own version of assert() that writes failed assertions to the log for review -#ifdef NDEBUG - #define ASSERT(x) ((void)0) -#else +#ifdef _DEBUG #define ASSERT( x ) ( !!(x) || ( LOGERROR("Assertion failed: %s, file %s, line %i", #x, __FILE__, __LINE__ ), assert(0), 0 ) ) +#else + #define ASSERT(x) ((void)0) #endif // Pretty much the same as ASSERT() but stays in Release builds |