X-Git-Url: https://git.novaco.in/?a=blobdiff_plain;f=src%2Fmakefile.bsd;h=53b66a4c7e54e25337d8826d1893c77ac435e296;hb=5d466098ff30f0dece5d7e64e1b8b701aa088649;hp=ea442639c95bd4426cd4415206155972c976b60c;hpb=961a3c4f1132805426c904e411bfdfafa31bda77;p=novacoin.git diff --git a/src/makefile.bsd b/src/makefile.bsd index ea44263..53b66a4 100644 --- a/src/makefile.bsd +++ b/src/makefile.bsd @@ -2,9 +2,9 @@ # Distributed under the MIT/X11 software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. -USE_UPNP:=0 USE_LEVELDB:=0 USE_IPV6:=1 +ARCH:=$(uname -m) LINK:=$(CXX) @@ -34,14 +34,6 @@ LIBS += \ -l crypto \ -l execinfo -ifndef USE_UPNP - override USE_UPNP = - -endif -ifneq (${USE_UPNP}, -) - LIBS += -l miniupnpc - DEFS += -DUSE_UPNP=$(USE_UPNP) -endif - ifneq (${USE_IPV6}, -) DEFS += -DUSE_IPV6=$(USE_IPV6) endif @@ -88,6 +80,14 @@ LIBS+= \ DEBUGFLAGS=-g +ifeq (${ARCH}, i386) + EXT_OPTIONS=-msse2 -mssse3 +endif + +ifeq (${ARCH}, amd64) + EXT_OPTIONS=-mssse3 +endif + xOPT_LEVEL=-O2 ifeq (${USE_O3}, 1) xOPT_LEVEL=-O3 @@ -95,7 +95,7 @@ endif # CXXFLAGS can be specified on the make command line, so we use xCXXFLAGS that only # adds some defaults in front. Unfortunately, CXXFLAGS=... $(CXXFLAGS) does not work. -xCXXFLAGS=$(xOPT_LEVEL) -msse2 -pthread -Wall -Wextra -Wno-ignored-qualifiers -Wformat -Wformat-security -Wno-unused-parameter \ +xCXXFLAGS=$(xOPT_LEVEL) $(EXT_OPTIONS) -pthread -Wall -Wextra -Wno-ignored-qualifiers -Wformat -Wformat-security -Wno-unused-parameter \ $(DEBUGFLAGS) $(DEFS) $(HARDENING) $(CXXFLAGS) # LDFLAGS can be specified on the make command line, so we use xLDFLAGS that only @@ -133,7 +133,8 @@ OBJS= \ obj/wallet.o \ obj/walletdb.o \ obj/noui.o \ - obj/kernel.o + obj/kernel.o \ + obj/kernel_worker.o all: novacoind @@ -154,6 +155,9 @@ OBJS += obj/txdb-bdb.o endif ifeq (${USE_ASM}, 1) + +DEFS += -DUSE_ASM + # Assembler implementation OBJS += crypto/scrypt/asm/obj/scrypt-arm.o crypto/scrypt/asm/obj/scrypt-x86.o crypto/scrypt/asm/obj/scrypt-x86_64.o crypto/scrypt/asm/obj/asm-wrapper.o OBJS += crypto/sha2/asm/obj/sha2-arm.o crypto/sha2/asm/obj/sha2-x86.o crypto/sha2/asm/obj/sha2-x86_64.o @@ -179,7 +183,6 @@ crypto/sha2/asm/obj/sha2-x86_64.o: crypto/sha2/asm/sha2-x86_64.S crypto/sha2/asm/obj/sha2-arm.o: crypto/sha2/asm/sha2-arm.S $(CXX) -c $(xCXXFLAGS) -MMD -o $@ $< -DEFS += -DUSE_ASM else ifeq (${USE_SSE2}, 1) # Intrinsic implementation @@ -229,6 +232,9 @@ clean: -rm -f crypto/scrypt/generic/obj/*.o -rm -f crypto/scrypt/generic/obj/*.P -rm -f crypto/scrypt/generic/obj/*.d + -rm -f crypto/sha2/asm/obj/*.o + -rm -f crypto/sha2/asm/obj/*.P + -rm -f crypto/sha2/asm/obj/*.d -rm -f obj/build.h FORCE: