aboutsummaryrefslogtreecommitdiff
path: root/makefile.mingw
diff options
context:
space:
mode:
authors_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b>2010-08-09 19:54:40 +0000
committers_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b>2010-08-09 19:54:40 +0000
commite6b7ab57496c9267c5d0bbad2be8e942a01731dc (patch)
tree6b913f7abdc6a062e36e7bf5fa15a9e121ab0848 /makefile.mingw
parent0c50722270a97e9fe3fd19283c85ee5f82603d0d (diff)
downloadbitcoin-e6b7ab57496c9267c5d0bbad2be8e942a01731dc.tar.xz
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.mingw')
-rw-r--r--makefile.mingw2
1 files changed, 1 insertions, 1 deletions
diff --git a/makefile.mingw b/makefile.mingw
index 9596ece97b..eee465ca28 100644
--- a/makefile.mingw
+++ b/makefile.mingw
@@ -54,7 +54,7 @@ obj/%.o: %.cpp $(HEADERS)
g++ -c $(CFLAGS) -DGUI -o $@ $<
cryptopp/obj/%.o: cryptopp/%.cpp
- g++ -c $(CFLAGS) -O3 -DCRYPTOPP_X86_ASM_AVAILABLE -DCRYPTOPP_DISABLE_SSE2 -o $@ $<
+ g++ -c $(CFLAGS) -O3 -DCRYPTOPP_X86_ASM_AVAILABLE -o $@ $<
obj/ui_res.o: ui.rc rc/bitcoin.ico rc/check.ico rc/send16.bmp rc/send16mask.bmp rc/send16masknoshadow.bmp rc/send20.bmp rc/send20mask.bmp rc/addressbook16.bmp rc/addressbook16mask.bmp rc/addressbook20.bmp rc/addressbook20mask.bmp
windres $(DEFS) $(INCLUDEPATHS) -o $@ -i $<