diff options
author | Alexander Harkness <bearbin@gmail.com> | 2013-11-27 18:54:23 +0100 |
---|---|---|
committer | Alexander Harkness <bearbin@gmail.com> | 2013-11-27 18:54:23 +0100 |
commit | 187a0dbaa2106b74c0e137ce4a883683b844d543 (patch) | |
tree | 884dfef2300e0be9a0572a226c9283ffb856f6ce | |
parent | Fixed a load of issues, clang autodetection works now. (diff) | |
download | cuberite-187a0dbaa2106b74c0e137ce4a883683b844d543.tar cuberite-187a0dbaa2106b74c0e137ce4a883683b844d543.tar.gz cuberite-187a0dbaa2106b74c0e137ce4a883683b844d543.tar.bz2 cuberite-187a0dbaa2106b74c0e137ce4a883683b844d543.tar.lz cuberite-187a0dbaa2106b74c0e137ce4a883683b844d543.tar.xz cuberite-187a0dbaa2106b74c0e137ce4a883683b844d543.tar.zst cuberite-187a0dbaa2106b74c0e137ce4a883683b844d543.zip |
-rw-r--r-- | GNUmakefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/GNUmakefile b/GNUmakefile index 4b4bc0386..e0e606d90 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -59,8 +59,8 @@ ifeq ($(profile),1) # profile build - a release build with symbols and profiling engine built in ################ -CC_OPTIONS = -s -g -ggdb -O3 -pg -DNDEBUG -CXX_OPTIONS = -s -g -ggdb -O3 -pg -DNDEBUG +CC_OPTIONS = -g -ggdb -O3 -pg -DNDEBUG +CXX_OPTIONS = -g -ggdb -O3 -pg -DNDEBUG LNK_OPTIONS = -pthread -ggdb -O3 -pg BUILDDIR = build/profile/ @@ -71,8 +71,8 @@ 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 -O1 +CC_OPTIONS = -ggdb -g -D_DEBUG -O3 +CXX_OPTIONS = -ggdb -g -D_DEBUG -O1 LNK_OPTIONS = -pthread -g -ggdb -O1 BUILDDIR = build/debug/ |