Page 1 of 1

Building SVN trunk on mac osx 1.6.8

Posted: Sat Oct 06, 2012 12:33 am
by m4tricol
Hello to everyone,
I'm trying to build the CodeLite on my mac os x 1.6.8 with wxWidget 2.94, I've configured wxWidget with

arch_flags="-arch i386"
../configure CFLAGS="$arch_flags" CXXFLAGS="$arch_flags" CPPFLAGS="$arch_flags" LDFLAGS="$arch_flags" OBJCFLAGS="$arch_flags" OBJCXXFLAGS="$arch_flags" --disable-debug --with-carbon --enable-shared --enable-monolithic --with-libjpeg=builtin --with-libpng=builtin --with-regex=builtin --without-libtiff --with-zlib=builtin --with-expat=builtin --enable-macosx_arch=i386 --with-macosx-version-min=10.5 --with-macosx-sdk=/Developer/SDKs/MacOSX10.5.sdk

then build codelite ,but at the end ->"Carbon does not support 64bit", but looking in the makefile there is -m32 so why it' compiles to 64bit..

Is there any way to configure wxWidget and build CodeLite on snow leopard ?

thanks :)

Re: Building SVN trunk on mac osx 1.6.8

Posted: Sat Oct 06, 2012 12:52 am
by eranif
m4tricol wrote:Is there any way to configure wxWidget and build CodeLite on snow leopard ?
You need to build wxWidgets with cocoa and not carbon

This is how I build wxWidgets under Mac (for releases):

Code: Select all

./configure --enable-monolithic --enable-shared --disable-debug --with-osx_cocoa

Eran