diff options
| author | s_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b> | 2010-07-28 21:11:09 +0000 |
|---|---|---|
| committer | s_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b> | 2010-07-28 21:11:09 +0000 |
| commit | 0bd084011a3f95cf3fdc7a20b7017bfe06c7223f (patch) | |
| tree | d318d2286d9b1074073c56ad7aa6f9756dd3966f | |
| parent | better IsInitialBlockDownload (diff) | |
| download | discoin-0bd084011a3f95cf3fdc7a20b7017bfe06c7223f.tar.xz discoin-0bd084011a3f95cf3fdc7a20b7017bfe06c7223f.zip | |
fixed makefile.vc
git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@116 1a98c847-1fd6-4fd8-948a-caf3550aa51b
| -rw-r--r-- | makefile.vc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/makefile.vc b/makefile.vc index 88314808d..9eb4d3221 100644 --- a/makefile.vc +++ b/makefile.vc @@ -73,10 +73,10 @@ obj\ui.obj: $(HEADERS) obj\uibase.obj: $(HEADERS)
cryptopp\obj\sha.obj: cryptopp\sha.cpp
- cl $(CFLAGS) /O2 /Fo$@ %s
+ cl $(CFLAGS) /O2 /DCRYPTOPP_DISABLE_ASM /Fo$@ %s
cryptopp\obj\cpu.obj: cryptopp\cpu.cpp
- cl $(CFLAGS) /O2 /Fo$@ %s
+ cl $(CFLAGS) /O2 /DCRYPTOPP_DISABLE_ASM /Fo$@ %s
obj\ui.res: 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
rc $(INCLUDEPATHS) $(DEFS) /Fo$@ %s
|