diff options
author | --author=Satoshi Nakamoto <satoshin@gmx.com> | 2010-07-30 17:31:39 +0000 |
---|---|---|
committer | Gavin Andresen <gavinandresen@gmail.com> | 2010-07-30 17:31:39 +0000 |
commit | 31ffe954b6f415b724c3214de5bffd7bba5872c0 (patch) | |
tree | 2079bb6a3fae5fd01d95c6aeab5fb7f5f2d132d8 | |
parent | 872d60f6e4aa599a4821372c30a285f67f9faa77 (diff) |
fixed makefile.osx
-rw-r--r-- | makefile.osx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/makefile.osx b/makefile.osx index 39ca449819..9d97e5e71f 100644 --- a/makefile.osx +++ b/makefile.osx @@ -51,7 +51,7 @@ obj/%.o: %.cpp $(HEADERS) g++ -c $(CFLAGS) -DGUI -o $@ $< cryptopp/obj/%.o: cryptopp/%.cpp - g++ -c $(CFLAGS) -O3 -o $@ $< + g++ -c $(CFLAGS) -O3 -DCRYPTOPP_DISABLE_ASM -o $@ $< bitcoin: $(OBJS) obj/ui.o obj/uibase.o g++ $(CFLAGS) -o $@ $(LIBPATHS) $^ $(WXLIBS) $(LIBS) |