diff options
author | Alexander Harkness <bearbin@gmail.com> | 2013-11-27 17:59:58 +0100 |
---|---|---|
committer | Alexander Harkness <bearbin@gmail.com> | 2013-11-27 17:59:58 +0100 |
commit | 3568adafc2117a453a272beec643d133550318d8 (patch) | |
tree | a5f730789943ff0858f929a2a000485ca5937542 /GNUmakefile | |
parent | Removed the -Og option, which is rather new. (diff) | |
download | cuberite-3568adafc2117a453a272beec643d133550318d8.tar cuberite-3568adafc2117a453a272beec643d133550318d8.tar.gz cuberite-3568adafc2117a453a272beec643d133550318d8.tar.bz2 cuberite-3568adafc2117a453a272beec643d133550318d8.tar.lz cuberite-3568adafc2117a453a272beec643d133550318d8.tar.xz cuberite-3568adafc2117a453a272beec643d133550318d8.tar.zst cuberite-3568adafc2117a453a272beec643d133550318d8.zip |
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/GNUmakefile b/GNUmakefile index f83de0ac5..b5c3da081 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -47,8 +47,8 @@ ifeq ($(release),1) # release build - fastest run-time, no gdb support ################ -CC_OPTIONS = -g -O3 -DNDEBUG -CXX_OPTIONS = -g -O3 -DNDEBUG +CC_OPTIONS = -O3 -DNDEBUG +CXX_OPTIONS = -O3 -DNDEBUG LNK_OPTIONS = -pthread -O3 BUILDDIR = build/release/ |