diff options
author | s_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b> | 2010-07-28 21:17:35 +0000 |
---|---|---|
committer | s_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b> | 2010-07-28 21:17:35 +0000 |
commit | f6f8237a748e3627bd4a201ed2e376d8c42c3bac (patch) | |
tree | d17a050f16d2443cc2c7d55d8ae455d6a96ace54 | |
parent | 0bd084011a3f95cf3fdc7a20b7017bfe06c7223f (diff) |
fixed makefile.osx
git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@117 1a98c847-1fd6-4fd8-948a-caf3550aa51b
-rw-r--r-- | makefile.osx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/makefile.osx b/makefile.osx index 014303ffa1..a6b810b27c 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)
|