Skip to content

Commit

Permalink
Always use SSE2
Browse files Browse the repository at this point in the history
It is supported on virtually all systems (except for ARM, but we don't target that yet)
  • Loading branch information
withthelemons committed Oct 14, 2017
1 parent 9da6ec8 commit 1a65d87
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hempcoin-qt.pro
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ CONFIG += static
CONFIG += widgets
QT += core gui network widgets

DEFINES += USE_SSE2
DEFINES += USE_SSE2 USE_SSE2_ALWAYS

QMAKE_CXXFLAGS = -fpermissive

Expand Down
2 changes: 1 addition & 1 deletion src/makefile.unix
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ USE_IPV6:=1
LINK:=$(CXX)
ARCH:=$(system lscpu | head -n 1 | awk '{print $2}')

DEFS=-DBOOST_SPIRIT_THREADSAFE -DUSE_SSE2
DEFS=-DBOOST_SPIRIT_THREADSAFE -DUSE_SSE2 -DUSE_SSE2_ALWAYS

DEFS += $(addprefix -I,$(CURDIR) $(CURDIR)/obj $(BOOST_INCLUDE_PATH) $(BDB_INCLUDE_PATH) $(OPENSSL_INCLUDE_PATH))
LIBS = $(addprefix -L,$(BOOST_LIB_PATH) $(BDB_LIB_PATH) $(OPENSSL_LIB_PATH))
Expand Down

0 comments on commit 1a65d87

Please sign in to comment.