Difference between revisions of "Development:Building:Intel"
(Removed the -w flag from the make command as it is now redundant) |
(Fixed typo from gliv to glib, numerically listed the references) |
||
Line 11: | Line 11: | ||
Open Terminal.app | Open Terminal.app | ||
− | sudo apt-get install orbit orbit-dev | + | sudo apt-get install orbit orbit-dev glib lididl2 |
Close Terminal.app | Close Terminal.app | ||
Line 71: | Line 71: | ||
==References== | ==References== | ||
− | http://www.caminobrowser.org/development/build/ | + | #http://www.caminobrowser.org/development/build/ |
− | http://developer.mozilla.org/en/docs/Mac_OS_X_Universal_Binaries | + | #http://developer.mozilla.org/en/docs/Mac_OS_X_Universal_Binaries |
Revision as of 10:54, 20 June 2006
Contents
Building Camino on your Intel Mac
These instructions are constantly changing and should not be considered a definitive resource, even though there is no other resource.
Preparing your Macintosh
Download and install XCode 2.3 from the Apple Developer Connection. (free registration)
Download and install Fink 0.8.1 from Fink.
Open Terminal.app
sudo apt-get install orbit orbit-dev glib lididl2
Close Terminal.app
Download and install the Shared Menus Cocoa framework using the instructions at Mozilla Developer Centre.
Open Terminal.app
sudo mkdir -p /Developer/SDKs/MacOSX10.2.8.sdk/Library/Frameworks sudo ln -s /Library/Frameworks/SharedMenusCocoa.framework /Developer/SDKs/MacOSX10.2.8.sdk/Library/Frameworks sudo mkdir -p /Developer/SDKs/MacOSX10.4u.sdk/Library/Frameworks sudo ln -s /Library/Frameworks/SharedMenusCocoa.framework /Developer/SDKs/MacOSX10.4u.sdk/Library/Frameworks
Pulling source and building in Terminal.app
Open Terminal.app, change directory to where you would like to build Camino from.
export CVSROOT=:pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot cvs login cvs co mozilla/client.mk cvs co mozilla/camino/config/mozconfig
Use your favourite text editor to create the file .mozconfig
If your Intel Mac has a Core Duo processor then your .mozconfig file should contain the following:
. $topsrcdir/camino/config/mozconfig ac_add_options --disable-optimize ac_add_options --enable-debug mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/../build mk_add_options MOZ_MAKE_FLAGS=-j2
If your Intel Mac does not have a Core Duo processor remove the final line from above.
To pull from cvs and build:
make -f client.mk
Building in XCode
Open XCode, click your left-mouse button on File ... Open
Browse to build/i386/camino/ and select Camino.xcode
Choose to Upgrade a Copy
Click on Project... Edit Project Settings
In the General tab select Mac OS X 10.4 (Universal) in the Cross-Develop Using Target SDK drop-down menu.
Click on Change in the panel that pops up.
Click Project... Edit Active Executable 'Camino'
In the Arguments tab click the + button under the "Variables to be set in the environment" table.
In the Name column type 'CAMINO_PROFILE_DIR' in the Value column type in where you would like to store Camino's profile for your development copy.