| Downloads
 Wiki
 Build CodeLite
 Devs
 | BuildingCodeLiteOnAMacOn this page... (hide) Building CodeLite on OSXStep 0: Prerequisites
 Step 1: Build wxWidgetsExtract wxWidgets sources. Let's assume that you have extracted them to  cd /Users/you/src/wx-src/ mkdir build-release cd build-release ../configure --enable-shared --enable-monolithic --with-osx_cocoa CXX='clang++ -std=c++11 -stdlib=libc++' CC=clang --disable-debug --disable-mediactrl make -j4 sudo make install Step 2: Build CodeLite
 cd /Users/you/src/ git clone https://github.com/eranif/codelite.git 
 cd /Users/you/src/codelite mkdir build-release cd build-release cmake .. -DCMAKE_BUILD_TYPE=Release -DWITH_PCH=1 make -j4 make install 
 open codelite.app/ |