diff options
author | Memphiz <memphis@machzwo.de> | 2012-07-28 05:54:48 -0700 |
---|---|---|
committer | Memphiz <memphis@machzwo.de> | 2012-07-28 06:05:34 -0700 |
commit | aaa960f6b389ae273d81f049783dfaa02cbdb854 (patch) | |
tree | 4ad03ec6147c37add2b80f7151904a2db9be19ab /docs | |
parent | 8105a4182c0d795e75d0b04d66ed371c003b9ab2 (diff) |
[osx] - adapt readme for building with osx mountain lion
Diffstat (limited to 'docs')
-rw-r--r-- | docs/README.osx | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/docs/README.osx b/docs/README.osx index fa86366487..ef12383e52 100644 --- a/docs/README.osx +++ b/docs/README.osx @@ -48,12 +48,13 @@ Install latest Xcode (4.3.2 or 3.2.6 as of the writing). You can download it fro 1. Apple's site after registration at http://developer.apple.com/tools/download (Xcode 3.2.6) 2. In the MacOSX AppStore (Xcode 4.3.x). -If you are using XCode 4.3.x you also need to install the "Command Line Tools". To do so +If you are using XCode 4.3.x or later you also need to install the "Command Line Tools". To do so after installing Xcode you have to go to "Xcode->Preferences->Downloads" and install the package "Command Line Tools". Xcode 3.2.6 only runs on 10.6.x (Snow Leopard). Xcode 4.3.x only runs on 10.7.x (Lion). +Xcode 4.4 only runs on 10.8.x (Mountain Lion). ----------------------------------------------------------------------------- 3.1 Install XBMC build depends @@ -73,6 +74,12 @@ Xcode 4.3.x only runs on 10.7.x (Lion). $ ./configure --with-darwin=osx --with-arch=x86_64 $ make +IMPORTANT!! for Mountain Lion users. In Xcode 4.4 there is only SDK 10.7 and 10.8 +available. The XBMC buildsystem defaults to 10.6. So for compiling with ML +you have to specify the 10.7 SDK explicitly on configure: + + $ ./configure --with-darwin=osx --with-sdk=10.7 + ----------------------------------------------------------------------------- 4. How to compile @@ -112,7 +119,7 @@ Xcode 3.2.6 add "XBMC_HOME" as an enviroment variable. Set the value to the path to the XBMC root folder. For example, "/Users/bigdog/Documents/XBMC" -Xcode 4.3.x +Xcode 4.3.x and later Menu -> Product -> Edit Sheme -> "Run XBMC"/"Debug" -> Add XBMC_HOME into the List of "Environment Variables".Set the value to the path to thev XBMC root folder. For example, "/Users/bigdog/Documents/XBMC" @@ -124,7 +131,12 @@ OSX application. Set the build target to "XBMC" or "XBMC.app" and be sure to select the same architecture as selected in step 3.1 (either i386 for 32Bit or x86_64 for 64Bit), -then build. The build process will take a long time when building the first time. +then build. + +Mountain Lion users have to ensure to build against 10.7 SDK not 10.8 (which is +selected in Xcode 4.4 by default). + +The build process will take a long time when building the first time. You can see the progress in "Build Results". There are a large number of static and dynamic libaries that will need to be built. Once these are built, subsequent builds will be faster. |