diff options
author | s_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b> | 2010-08-09 19:54:40 +0000 |
---|---|---|
committer | s_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b> | 2010-08-09 19:54:40 +0000 |
commit | e6b7ab57496c9267c5d0bbad2be8e942a01731dc (patch) | |
tree | 6b913f7abdc6a062e36e7bf5fa15a9e121ab0848 /makefile.unix | |
parent | 0c50722270a97e9fe3fd19283c85ee5f82603d0d (diff) |
enable SSE2 in all builds to fix crypto++ SHA-256 on 64-bit
git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@124 1a98c847-1fd6-4fd8-948a-caf3550aa51b
Diffstat (limited to 'makefile.unix')
-rw-r--r-- | makefile.unix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/makefile.unix b/makefile.unix index e965287917..7418d6dcf4 100644 --- a/makefile.unix +++ b/makefile.unix @@ -51,7 +51,7 @@ obj/%.o: %.cpp $(HEADERS) g++ -c $(CFLAGS) -DGUI -o $@ $<
cryptopp/obj/%.o: cryptopp/%.cpp
- g++ -c $(CFLAGS) -O3 -DCRYPTOPP_DISABLE_SSE2 -o $@ $<
+ g++ -c $(CFLAGS) -O3 -o $@ $<
bitcoin: $(OBJS) obj/ui.o obj/uibase.o
g++ $(CFLAGS) -o $@ $^ $(WXLIBS) $(LIBS)
|