X-Git-Url: https://git.novaco.in/?a=blobdiff_plain;f=src%2Fmakefile.unix;h=bea34d8655177ebc620ad5c2c7f634044fdc449e;hb=1c7ed42093c5935e3958584ed98a2b03466a0023;hp=65eaca13504852141832698c95a256f23fc43f0a;hpb=961a3c4f1132805426c904e411bfdfafa31bda77;p=novacoin.git diff --git a/src/makefile.unix b/src/makefile.unix index 65eaca1..bea34d8 100644 --- a/src/makefile.unix +++ b/src/makefile.unix @@ -2,7 +2,6 @@ # 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 @@ -34,14 +33,6 @@ LIBS += \ -l ssl \ -l crypto -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 @@ -99,6 +90,12 @@ ifeq (${USE_O3}, 1) xOPT_LEVEL=-O3 endif +ifeq (${USE_SSSE3}, 1) +# Intrinsic implementation of block copy +DEFS += -DUSE_SSSE3 +xOPT_LEVEL += -mssse3 +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) $(EXT_OPTIONS) -pthread -Wall -Wextra -Wno-ignored-qualifiers -Wformat -Wformat-security -Wno-unused-parameter \ @@ -182,10 +179,11 @@ crypto/sha2/asm/obj/sha2-x86.o: crypto/sha2/asm/sha2-x86.S crypto/sha2/asm/obj/sha2-x86_64.o: crypto/sha2/asm/sha2-x86_64.S $(CXX) -c $(xCXXFLAGS) -MMD -o $@ $< -crypto/sha2/asm/obj/sha2-arm.o: crypto/sha2/asm/sha2-x86.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 @@ -237,6 +235,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: