diff options
-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) |