diff options
author | Alexander Harkness <bearbin@gmail.com> | 2013-11-27 17:57:28 +0100 |
---|---|---|
committer | Alexander Harkness <bearbin@gmail.com> | 2013-11-27 17:57:28 +0100 |
commit | a5425e0557ff0e288cf709268397826431b3f389 (patch) | |
tree | 3621c1d94c5e33dba04b5cd1091b2bdcad52d64f | |
parent | Added missing files for Voronoi map generation. (diff) | |
download | cuberite-a5425e0557ff0e288cf709268397826431b3f389.tar cuberite-a5425e0557ff0e288cf709268397826431b3f389.tar.gz cuberite-a5425e0557ff0e288cf709268397826431b3f389.tar.bz2 cuberite-a5425e0557ff0e288cf709268397826431b3f389.tar.lz cuberite-a5425e0557ff0e288cf709268397826431b3f389.tar.xz cuberite-a5425e0557ff0e288cf709268397826431b3f389.tar.zst cuberite-a5425e0557ff0e288cf709268397826431b3f389.zip |
-rw-r--r-- | GNUmakefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/GNUmakefile b/GNUmakefile index 8c452c1cc..f83de0ac5 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -71,10 +71,9 @@ else # Since C code is used only for supporting libraries (zlib, lua), it is still Ofast-optimized ################ - CC_OPTIONS = -s -ggdb -g -D_DEBUG -O3 - -CXX_OPTIONS = -s -ggdb -g -D_DEBUG -Og -LNK_OPTIONS = -pthread -g -ggdb -Og +CC_OPTIONS = -s -ggdb -g -D_DEBUG -O3 +CXX_OPTIONS = -s -ggdb -g -D_DEBUG -O1 +LNK_OPTIONS = -pthread -g -ggdb -O1 BUILDDIR = build/debug/ endif endif |