diff options
| author | Satoshi Nakamoto <[email protected]> | 2010-08-16 20:51:46 +0000 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2010-08-16 20:51:46 +0000 |
| commit | 019b456605f90f13cdc8ecc02aa8492b4e65846e (patch) | |
| tree | fc8d47d57afc3b9aa9932f8cbad40e5d745447ea | |
| parent | makefile.unix to build with option to enable tcatm's 4-way SSE2 SHA-256 with ... (diff) | |
| download | discoin-019b456605f90f13cdc8ecc02aa8492b4e65846e.tar.xz discoin-019b456605f90f13cdc8ecc02aa8492b4e65846e.zip | |
added -march=amdfam10 to sha256.cpp in makefile.unix
| -rw-r--r-- | makefile.unix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/makefile.unix b/makefile.unix index 6c7a37c6e..7a38bf046 100644 --- a/makefile.unix +++ b/makefile.unix @@ -54,7 +54,7 @@ cryptopp/obj/%.o: cryptopp/%.cpp g++ -c $(CFLAGS) -O3 -o $@ $< obj/sha256.o: sha256.cpp - g++ -c $(CFLAGS) -msse2 -O3 -o $@ $< + g++ -c $(CFLAGS) -msse2 -O3 -march=amdfam10 -o $@ $< bitcoin: $(OBJS) obj/ui.o obj/uibase.o obj/sha256.o g++ $(CFLAGS) -o $@ $^ $(WXLIBS) $(LIBS) |