Difference between revisions of "MacOSCompile"

From VideoLAN Wiki
Jump to navigation Jump to search
m (Removed protection from "OSXCompile")
Line 5: Line 5:
 
=== Apple Software ===
 
=== Apple Software ===
  
*You need at least MacOSX 10.5. '''10.6''', '''Snow Leopard''' or later is strongly recommended, though.  
+
*You need at least MacOSX '''10.7''', '''Lion''' or later is strongly recommended, though.  
*'''Developer Tools from Apple''' from http://developer.apple.com/technology/xcode.html<br> Both ''Xcode3'' and ''Xcode4'' should be fine. <br />Note: If using [https://developer.apple.com/library/mac/#documentation/DeveloperTools/Conceptual/WhatsNewXcode/Articles/xcode_4_3.html Xcode 4.3] or later, the command line tools must be installed manually through preferences. Additionally, [https://trac.videolan.org/vlc/ticket/6305 Xcode 4.3 will require changes to VLC's build system] which are currently pending and may require patching until resolved.
+
*'''Developer Tools from Apple''' from http://developer.apple.com/technology/xcode.html<br> You need at least ''Xcode4.3''. <br />Note: If using [https://developer.apple.com/library/mac/#documentation/DeveloperTools/Conceptual/WhatsNewXcode/Articles/xcode_4_3.html Xcode 4.3], the command line tools must be installed manually through preferences.
  
 
=== Xcode select on Xcode 4.3  ===
 
=== Xcode select on Xcode 4.3  ===
Line 19: Line 19:
  
 
  sudo /usr/bin/xcode-select -switch /Applications/Xcode.app/Contents/Developer   
 
  sudo /usr/bin/xcode-select -switch /Applications/Xcode.app/Contents/Developer   
 
=== Git  ===
 
 
If you have XCode 4, Git is already installed
 
You just need to point your Terminal to it:
 
 
export PATH=/Developer/usr/bin:$PATH
 
 
If you have Xcode 3, [http://git-scm.com/ get Git from their website].
 
  
 
=== Configure the environment ===
 
=== Configure the environment ===
  
On '''Mac OS X 10.6''' VLC needs to be compiled using Apple's llvm-gcc-4.2 compiler in its latest version. To use this compiler, you need to export the respective variables. In a Bourne Shell, type this (if Xcode is installed to its default location; bash is the default shell on OS X):  
+
On '''Mac OS X 10.7''' VLC needs to be compiled using Apple's clang compiler in its latest version. To use this compiler, you need to export the respective variables. In a Bourne Shell, type this (if Xcode is installed to its default location; bash is the default shell on OS X):  
 
 
export CC=/Developer/usr/bin/llvm-gcc-4.2
 
export CXX=/Developer/usr/bin/llvm-g++-4.2
 
export OBJC=/Developer/usr/bin/llvm-gcc-4.2
 
 
 
On '''Mac OSX 10.8.2''' use the following
 
  
  export CC=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
+
  export CC="xcrun clang"
  export CXX=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/c++
+
  export CXX="xcrun clang++"
  export OBJC=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/cc
+
  export OBJC="xcrun clang"
  
 
If you are using a C-Shell, you need to use the setenv command of course.
 
If you are using a C-Shell, you need to use the setenv command of course.
Line 77: Line 62:
 
  export PATH=$PWD/extras/tools/build/bin:$PATH
 
  export PATH=$PWD/extras/tools/build/bin:$PATH
  
== SDK selection and 32/64 bits  ==
+
== SDK selection ==
 
 
=== SDK selection ===
 
 
 
If you want to use the 10.6 SDK (your VLC will only run on 10.6 and more recent computers):
 
 
 
export OSX_VERSION=10.6
 
 
 
You can do the same for '''10.5''', but please check that you have ''MacOSX10.5.sdk'' installed in ''/Developer/SDKs/'' . If you are using Xcode 4.2, you can [http://stackoverflow.com/a/6293605 install the 10.5 sdk] with the .dmg from Xcode3.
 
 
 
=== 32/64bits selection  ===
 
 
 
The instructions below will build a 64 bits binary using 10.6 (Snow Leopard) SDK. This is reflected by using host and build variables '''x86_64-apple-darwin10'''.
 
 
 
This "triplet" is ARCHITECTURE-apple-SYSTEM.
 
 
 
'''ARCHITECTURE'''
 
 
 
*<code>x86_64</code> represents Intel 64bits.
 
*<code>i686</code> represents Intel 32bits.
 
*<code>powerpc</code> represents PowerPC 32bits.
 
 
 
'''SDK SYSTEM'''
 
  
*<code>darwin9</code> represents MacOSX 10.5.
+
Set the OSX_Version to your current OSX Version
*<code>darwin10</code> represents MacOSX 10.6.
 
  
So to make a PowerPC build, you would use '''powerpc-apple-darwin9'''. So to make a intel32 build for 10.5+, you would use '''i686-apple-darwin9'''. So to make a intel64 build for 10.6+, you would use '''x86_64-apple-darwin10'''.
+
export OSX_VERSION=10.7
  
 
== Prepare [[Contrib Status|3rd party libraries]]  ==
 
== Prepare [[Contrib Status|3rd party libraries]]  ==
Line 157: Line 119:
 
  ../extras/package/macosx/configure.sh --help
 
  ../extras/package/macosx/configure.sh --help
  
To build a 64 bits binary:  
+
To build a binary with the previously installed x86_64-apple-darwin10 contrib:  
  
 
  ../extras/package/macosx/configure.sh --enable-debug --host=x86_64-apple-darwin10 --build=x86_64-apple-darwin10
 
  ../extras/package/macosx/configure.sh --enable-debug --host=x86_64-apple-darwin10 --build=x86_64-apple-darwin10

Revision as of 10:49, 29 November 2014

This is an howto to compile VLC media player on Mac OS X, focused on VLC 2.0 and newer.

Pre-requisites

Apple Software

Xcode select on Xcode 4.3

If you are on Xcode 4.3 with no previous Xcode installation , you probably need to run xcode select to point to your xcode developer directory.

xcrun clang

If this outputs 'Error: No developer directory...', then use xcode-select to select the developer directory within the Xcode package.

something like:

sudo /usr/bin/xcode-select -switch /Applications/Xcode.app/Contents/Developer  

Configure the environment

On Mac OS X 10.7 VLC needs to be compiled using Apple's clang compiler in its latest version. To use this compiler, you need to export the respective variables. In a Bourne Shell, type this (if Xcode is installed to its default location; bash is the default shell on OS X):

export CC="xcrun clang"
export CXX="xcrun clang++"
export OBJC="xcrun clang"

If you are using a C-Shell, you need to use the setenv command of course.

Get the source code

 git clone git://git.videolan.org/vlc.git

Build VLC with a single command

Setup a build folder:

cd vlc && mkdir build && cd build

And run the build:

../extras/package/macosx/build.sh

Wait and you are finished

You can see more options for this build (change arch or sdk):

../extras/package/macosx/build.sh -h

Build steps

Now, if you prefer, you can read the following detailed information on how the build internally works:

Additional development tools

You need development tools, notably all the autotools, to build VLC correctly.

Here is how:

cd vlc/extras/tools
./bootstrap && make
cd ../..

Important: set the new PATH.

export PATH=$PWD/extras/tools/build/bin:$PATH

SDK selection

Set the OSX_Version to your current OSX Version

export OSX_VERSION=10.7

Prepare 3rd party libraries

Before compiling VLC, you need lots of other libraries. Here is how to get them:

cd contrib
mkdir -p osx && cd osx
../bootstrap --host=x86_64-apple-darwin10 --build=x86_64-apple-darwin10

Prebuilt libraries (recommended)

If you want to download a prebuilt package of all the needed libraries.

make prebuilt

And then skip to bootstrap section of this page.

Build your own libraries (not for the faint-hearted)

If you want to build from source a package in the contribs:

make -j4 .gettext
export PATH=$PWD/../x86_64-apple-darwin10/bin:$PATH

Then:

make -j4

If you had no errors, the 3rd party libraries (contrib) are built correctly and you can proceed to the next step.

Go Back

Go back to the VLC source directory:

cd ../..

Bootstrap VLC

This will create the configure script:

./bootstrap

Configure the VLC build

Create a build folder:

mkdir -p build && cd build

To list the different options of configure:

../extras/package/macosx/configure.sh --help

To build a binary with the previously installed x86_64-apple-darwin10 contrib:

../extras/package/macosx/configure.sh --enable-debug --host=x86_64-apple-darwin10 --build=x86_64-apple-darwin10

Build VLC

Just do:

make -j4

and wait...

Package VLC Application for Mac

If you want to share the application with another user or another computer:

make VLC.app

If you want a disk-image:

make package-macosx

Respectively make package-macosx-plugin for the Safari/Mozilla plugin.

Sign VLC Application for Mac

If you want to sign your application with a certificate, for example for Gatekeeper, you need to run:

extras/package/macosx/codesign.sh -i "certificate name"

If you want to support OS X Snow Leopard and Leopard with your signature, you need to enable the "-g" option. Note that you need to replace the signature leaf hash "75GAHG3SZQ" with your own inside the codesign script prior to doing so, since otherwise your certificate will mix with VideoLAN's and your binary will be rejected by the OS.

What's wrong: troubleshooting

Xcode path

Starting with Leopard, Xcode may be installed to a custom location on the administrator's choice. While this is non-problematic for ordinary Xcode projects, VLC needs a little help. You have to place extra symbolic links in /Developer pointing to your custom location for these folders:

usr, Headers, Private, SDKs, Tools, Makefiles

You can easily create these links by executing the following command for each folder (whereas theFolder is one of these six):

ln -s /full/path/to/Developer/theFolder /Developer/theFolder

Xcode version

Please make sure that you are using the latest Xcode3 or the latest version of Xcode4 to compile VLC

3rd party packagers and PATH

Pay careful attention to remove any reference to 3rd party package managersfrom your environment. This is important to avoid conflicts between your package manager (homebrew, fink, macports...) and the contrib package manager we use to build our contrib.

It shouldn't be necessary, but it can happen.

git must still be accessible though!

unset PKG_CONFIG_PATH
unset PKG_CONFIG_LIBDIR
export PATH=$PWD/build/bin:/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin

QTsound compilation on X.5

MacOS X.5.SDK is broken - 2 options exist:

Option 1:

  • Download the MacOS10.6.sdk and get QTCaptureDecompressedAudioOutput.h from /Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/QTKit.framework/Headers/ and move it to /Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/QTKit.framework/Headers/
  • Edit /Developer/SDKs/MacOSX10.5.sdk/System/Library/Frameworks/QTKit.framework/Headers/QTKit.h and add the
#import <QTKit/QTCaptureDecompressedAudioOutput.h> where needed.

Option 2:

  • Configure the VLC build to explicitly use the MacOS10.6.sdk by adding the following flag:
--with-macosx-sdk=/Developer/SDKs/MacOSX10.6.sdk

Cross-Compilation to PPC from X.6 intel

If you want to compile VLC for PPC, based on a X.6 intel, you need to tweak a few things since Apple broke it.

This is VERY advanced stuff!

Pre-requisites

Be sure to:

  • have X.6.8
  • Xcode 4.2 installed in the normal /Developers location
  • Xcode 3 installed in /Xcode3 location
  • MacOS X.6 and X.5 SDK installed in /Developers/SDKs/ , as explained above (SDK selection).

GNU AS

Using this out of the box will not work because AS for ppc is broken on the default setup. Here is how to fix it:

cd /usr/libexec/as
sudo mkdir ppc
cd ppc
sudo ln -sf /Xcode3/usr/bin/as as