Building SVN trunk on mac osx 1.6.8

Discussion about CodeLite development process and patches
m4tricol
CodeLite Curious
Posts: 2
Joined: Sat Oct 06, 2012 12:12 am
Genuine User: Yes
IDE Question: Cpp
Contact:

Building SVN trunk on mac osx 1.6.8

Post 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 :)
User avatar
eranif
CodeLite Plugin
Posts: 6372
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: Building SVN trunk on mac osx 1.6.8

Post 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
Make sure you have read the HOW TO POST thread
Post Reply