Its an AMD x2 4200, custom build. Currently I have it running fine under WINE and generated my first coin within two hours!
I am still working on the native, however, and am stuck while trying to build wxWidgets. I know I must be doing something wrong. Here is a copy of the script I took from the directions.
PREFIX=~/bitcoin/deps
SRCDIR="$PREFIX/wxWidgets-trunk"
BUILDDIR="$SRCDIR/macbuild"
cd "$PREFIX" &&
#svn checkout http://svn.wxwidgets.org/svn/wx/wxWidgets/trunk wxWidgets-trunk &&
cd "$SRCDIR" &&
[ -f include/wx/hashmap.h.orig ] || cp include/wx/hashmap.h include/wx/hashmap.h.orig &&
sed 's/if wxUSE_STL/if 0 \&\& wxUSE_STL/g' < include/wx/hashmap.h.orig > include/wx/hashmap.h &&
[ -f include/wx/hashset.h.orig ] || cp include/wx/hashset.h include/wx/hashset.h.orig &&
sed 's/if wxUSE_STL/if 0 \&\& wxUSE_STL/g' < include/wx/hashset.h.orig > include/wx/hashset.h &&
rm -vrf "$BUILDDIR" &&
mkdir "$BUILDDIR" &&
cd "$BUILDDIR" &&
../configure --prefix="$PREFIX" \
--with-osx_cocoa \
--disable-shared \
--disable-debug_flag \
--with-macosx-version-min=10.5 \
--enable-stl \
--enable-utf8 \
--enable-universal_binary \
--with-libjpeg=builtin \
--with-libpng=builtin \
--with-regex=builtin \
--with-libtiff=builtin \
--with-zlib=builtin \
--with-expat=builtin \
--with-macosx-sdk=/Developer/SDKs/MacOSX10.5.sdk &&
find . -name Makefile |
while read i; do
echo $i;
sed 's/-arch i386/-arch i386 -arch x86_64/g' < "$i" > "$i".new &&
mv "$i" "$i".old &&
mv "$i".new "$i";
done
make &&
make install
And here is the console readout, it seems like I am missing an escape character somewhere or something.
admins-10:wxWidgets-trunk admin$ sh wxmake.sh
: command not found
: No such file or directorytcoin/deps
: No such file or directorytcoin/deps
: command not found
: command not found
: command not found
: command not found
: command not found
: command not found
: command not found
: command not found
: command not found
: command not found
mkdir: ~/bitcoin/deps\r/wxWidgets-trunk\r: No such file or directory
: No such file or directoryitcoin/deps
: command not found
wxmake.sh: line 21: ../configure: No such file or directory
wxmake.sh: line 22: --with-osx_cocoa: command not found
wxmake.sh: line 23: --disable-shared: command not found
wxmake.sh: line 24: --disable-debug_flag: command not found
wxmake.sh: line 25: --with-macosx-version-min=10.5: command not found
wxmake.sh: line 26: --enable-stl: command not found
wxmake.sh: line 27: --enable-utf8: command not found
wxmake.sh: line 28: --enable-universal_binary: command not found
wxmake.sh: line 29: --with-libjpeg=builtin: command not found
wxmake.sh: line 30: --with-libpng=builtin: command not found
wxmake.sh: line 31: --with-regex=builtin: command not found
wxmake.sh: line 32: --with-libtiff=builtin: command not found
wxmake.sh: line 33: --with-zlib=builtin: command not found
wxmake.sh: line 34: --with-expat=builtin: command not found
wxmake.sh: line 35: --with-macosx-sdk=/Developer/SDKs/MacOSX10.5.sdk: No such file or directory
: command not found
: command not found
: command not found
wxmake.sh: line 50: syntax error: unexpected end of file
I do have Xcode and the SDK is where it should be. There is something more basic I'm missing. Sorry for hijacking my own thread...