diff options
author | Alexander Harkness <bearbin@gmail.com> | 2013-11-27 18:18:40 +0100 |
---|---|---|
committer | Alexander Harkness <bearbin@gmail.com> | 2013-11-27 18:18:40 +0100 |
commit | 596963743e4651d4ae7560bde336852034baa50f (patch) | |
tree | abe8da87a6c0494e6e6877cb7d1a517b898c3a31 | |
parent | Removed the -g option for release builds, as binaries were getting huge. (diff) | |
download | cuberite-596963743e4651d4ae7560bde336852034baa50f.tar cuberite-596963743e4651d4ae7560bde336852034baa50f.tar.gz cuberite-596963743e4651d4ae7560bde336852034baa50f.tar.bz2 cuberite-596963743e4651d4ae7560bde336852034baa50f.tar.lz cuberite-596963743e4651d4ae7560bde336852034baa50f.tar.xz cuberite-596963743e4651d4ae7560bde336852034baa50f.tar.zst cuberite-596963743e4651d4ae7560bde336852034baa50f.zip |
Diffstat (limited to '')
-rw-r--r-- | GNUmakefile | 25 | ||||
-rw-r--r-- | src/Globals.h | 1 |
2 files changed, 6 insertions, 20 deletions
diff --git a/GNUmakefile b/GNUmakefile index b5c3da081..4b4bc0386 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -74,7 +74,9 @@ else 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 @@ -86,11 +88,9 @@ CXX_OPTIONS += -Wall ################################################### # Fix Crypto++ warnings in clang -ifeq ($(shell $(CXX) --version 2>&1 | grep -i -c "clang version"),0) -CC_OPTIONS += -Wno-tautological-compare -CXX_OPTIONS += -Wno-tautological-compare -disableasm = 1 -disableofast = 1 +ifeq ($(shell $(CXX) --version 2>&1 | grep -i -c "clang version"),1) +CC_OPTIONS += -DCRYPTOPP_DISABLE_ASM +CXX_OPTIONS += -DCRYPTOPP_DISABLE_ASM endif @@ -126,22 +126,9 @@ endif ################################################### -# Clang doesn't seem to support CryptoPP's assembly mode, disable it for now (CryptoPP 5.6.2) - -ifeq ($(disableasm),1) - CC_OPTIONS += -DCRYPTOPP_DISABLE_ASM - CXX_OPTIONS += -DCRYPTOPP_DISABLE_ASM -endif - - - - - -################################################### # INCLUDE directories for MCServer -INCLUDE = -I.\ - -Isrc\ +INCLUDE = -Isrc\ -Ilib\ -Ilib/jsoncpp/include diff --git a/src/Globals.h b/src/Globals.h index ef79e4cf1..cb67d9fda 100644 --- a/src/Globals.h +++ b/src/Globals.h @@ -118,7 +118,6 @@ typedef unsigned short UInt16; #include <dirent.h> #include <errno.h> #include <iostream> - #include <cstdio> #include <cstring> #include <pthread.h> |