2016-05-27 02:31:36 +00:00
|
|
|
|
# Building from source using Cerbero
|
2016-05-16 14:30:34 +00:00
|
|
|
|
|
2016-05-27 02:31:36 +00:00
|
|
|
|
> ![Warning] This section is intended for advanced users.
|
|
|
|
|
> </p>
|
|
|
|
|
> </td>
|
2016-05-16 14:30:34 +00:00
|
|
|
|
|
2016-05-16 16:23:12 +00:00
|
|
|
|
## Build requirements
|
2016-05-16 14:30:34 +00:00
|
|
|
|
|
|
|
|
|
The GStreamer SDK build system provides bootstrapping facilities for all
|
|
|
|
|
platforms, but it still needs a minimum base to bootstrap:
|
|
|
|
|
|
2016-05-27 02:31:36 +00:00
|
|
|
|
- python >= 2.6 and python's `argparse` module, which is already
|
2016-05-16 14:30:34 +00:00
|
|
|
|
included in python2.7.
|
2016-05-27 02:31:36 +00:00
|
|
|
|
- git
|
|
|
|
|
|
|
|
|
|
### Windows users
|
|
|
|
|
|
|
|
|
|
Cerbero can be used on Windows using the Msys/MinGW shell (a Unix-like
|
|
|
|
|
shell for Windows). There is a bit of setup that you need to do before
|
|
|
|
|
Cerbero can take control.
|
|
|
|
|
|
|
|
|
|
You need to install the following programs:
|
|
|
|
|
|
|
|
|
|
- [Python 2.7]
|
|
|
|
|
- [Git] (Select the install option "Checkout as-is, Commit as-is" and
|
|
|
|
|
install it in a path without spaces, eg: c:\Git)
|
|
|
|
|
- [Msys/MinGW] (Install it with all the options enabled)
|
|
|
|
|
- [CMake] (Select the option "Add CMake in system path for the
|
|
|
|
|
current user")
|
|
|
|
|
- [Yasm] (Download the win32 or win64 version for your platform, name
|
|
|
|
|
it `yasm.exe`, and place it in your MinGW `bin` directory,
|
|
|
|
|
typically, `C:\MinGW\bin`)
|
|
|
|
|
- [WiX 3.5]
|
|
|
|
|
- [Microsoft SDK 7.1] (Install the SDK samples and the Visual C++
|
|
|
|
|
Compilers, required to build the DirectShow base classes. Might need
|
|
|
|
|
installing the .NET 4 Framework first if the SDK installer doesn't
|
|
|
|
|
find it)
|
|
|
|
|
- [Windows Driver Kit 7.1.0]
|
|
|
|
|
|
|
|
|
|
Your user ID can't have spaces (eg: John Smith). Paths with spaces are
|
|
|
|
|
not correctly handled in the build system and msys uses the user ID for
|
|
|
|
|
the home folder.
|
|
|
|
|
|
|
|
|
|
Cerbero must be run in the MinGW shell, which is accessible from the
|
|
|
|
|
main menu once MinGW is installed.
|
|
|
|
|
|
|
|
|
|
The last step is making `python` and `git` available from the shell, for
|
|
|
|
|
which you will need to create a `.profile` file. Issue this command from
|
|
|
|
|
within the MinGW shell:
|
|
|
|
|
|
|
|
|
|
`echo "export PATH=\"\$PATH:/c/Python27:/c/Git/bin\"" >> ~/.profile`
|
|
|
|
|
|
|
|
|
|
Using the appropriate paths to where you installed `python` and `git`
|
|
|
|
|
|
|
|
|
|
(Note that inside the shell, / is mapped to c:\Mingw\msys\1.0 )
|
|
|
|
|
|
|
|
|
|
### OS X users
|
|
|
|
|
|
|
|
|
|
To use cerbero on OS X you need to install the "Command Line Tools" from
|
|
|
|
|
XCode. They are available from the "Preferences" dialog under
|
|
|
|
|
"Downloads".
|
|
|
|
|
|
|
|
|
|
### iOS developers
|
|
|
|
|
|
|
|
|
|
If you want to build the GStreamer-SDK for iOS, you also need the iOS
|
|
|
|
|
SDK. The minimum required iOS SDK version is 6.0 and is included in
|
|
|
|
|
[XCode] since version 4.
|
2016-05-16 16:23:12 +00:00
|
|
|
|
|
|
|
|
|
## Download the sources
|
2016-05-16 14:30:34 +00:00
|
|
|
|
|
|
|
|
|
To build the GStreamer SDK, you first need to download **Cerbero**.
|
|
|
|
|
Cerbero is a multi-platform build system for Open Source projects that
|
|
|
|
|
builds and creates native packages for different platforms,
|
|
|
|
|
architectures and distributions.
|
|
|
|
|
|
|
|
|
|
Get a copy of Cerbero by cloning the git repository:
|
|
|
|
|
|
2016-05-27 02:31:36 +00:00
|
|
|
|
git clone git://anongit.freedesktop.org/gstreamer/cerbero
|
2016-05-16 14:30:34 +00:00
|
|
|
|
|
|
|
|
|
Cerbero can be run uninstalled and for convenience you can create an
|
|
|
|
|
alias in your `.bashrc` file*. *If you prefer to skip this step,
|
|
|
|
|
remember that you need to replace the calls to `cerbero` with
|
|
|
|
|
`./cerbero-uninstalled` in the next steps.
|
|
|
|
|
|
2016-05-27 02:31:36 +00:00
|
|
|
|
echo "alias cerbero='~/git/cerbero/cerbero-uninstalled'" >> ~/.bashrc
|
2016-05-16 14:30:34 +00:00
|
|
|
|
|
2016-05-16 16:23:12 +00:00
|
|
|
|
## Setup environment
|
2016-05-16 14:30:34 +00:00
|
|
|
|
|
|
|
|
|
After Cerbero and the base requirements are in place, you need to setup
|
|
|
|
|
the build environment.
|
|
|
|
|
|
|
|
|
|
Cerbero reads the configuration file `$HOME/.cerbero/cerbero.cbc` to
|
|
|
|
|
determine the build options. This file is a python code which allows
|
|
|
|
|
overriding/defining some options.
|
|
|
|
|
|
|
|
|
|
If the file does not exist, Cerbero will try to determine the distro you
|
|
|
|
|
are running and will use default build options such as the default build
|
|
|
|
|
directory. The default options should work fine on the supported
|
|
|
|
|
distributions.
|
|
|
|
|
|
2016-05-27 02:31:36 +00:00
|
|
|
|
An example configuration file with detailed comments can be found [here]
|
2016-05-16 14:30:34 +00:00
|
|
|
|
|
|
|
|
|
To fire up the bootstrapping process, go to the directory where you
|
|
|
|
|
cloned/unpacked Cerbero and type:
|
|
|
|
|
|
2016-05-27 02:31:36 +00:00
|
|
|
|
cerbero bootstrap
|
2016-05-16 14:30:34 +00:00
|
|
|
|
|
|
|
|
|
Enter the superuser/root password when prompted.
|
|
|
|
|
|
|
|
|
|
The bootstrap process will then install all packages required to build
|
|
|
|
|
the GStreamer SDK.
|
|
|
|
|
|
2016-05-16 16:23:12 +00:00
|
|
|
|
## Build the SDK
|
2016-05-16 14:30:34 +00:00
|
|
|
|
|
|
|
|
|
To generate the SDK, use the following command:
|
|
|
|
|
|
2016-05-27 02:31:36 +00:00
|
|
|
|
cerbero package gstreamer-1.0
|
2016-05-16 14:30:34 +00:00
|
|
|
|
|
|
|
|
|
This should build all required SDK components and create packages for
|
|
|
|
|
your distribution at the Cerbero source directory.
|
|
|
|
|
|
|
|
|
|
A list of supported packages to build can be retrieved using:
|
|
|
|
|
|
2016-05-27 02:31:36 +00:00
|
|
|
|
cerbero list-packages
|
2016-05-16 14:30:34 +00:00
|
|
|
|
|
|
|
|
|
Packages are composed of 0 (in case of a meta package) or more
|
|
|
|
|
components that can be built separately if desired. The components are
|
|
|
|
|
defined as individual recipes and can be listed with:
|
|
|
|
|
|
2016-05-27 02:31:36 +00:00
|
|
|
|
cerbero list
|
2016-05-16 14:30:34 +00:00
|
|
|
|
|
|
|
|
|
To build an individual recipe and its dependencies, do the following:
|
|
|
|
|
|
2016-05-27 02:31:36 +00:00
|
|
|
|
cerbero build <recipe_name>
|
2016-05-16 14:30:34 +00:00
|
|
|
|
|
|
|
|
|
Or to build or force a rebuild of a recipe without building its
|
|
|
|
|
dependencies use:
|
|
|
|
|
|
2016-05-27 02:31:36 +00:00
|
|
|
|
cerbero buildone <recipe_name>
|
2016-05-16 14:30:34 +00:00
|
|
|
|
|
|
|
|
|
To wipe everything and start from scratch:
|
|
|
|
|
|
2016-05-27 02:31:36 +00:00
|
|
|
|
cerbero wipe
|
2016-05-16 14:30:34 +00:00
|
|
|
|
|
|
|
|
|
Once built, the output of the recipes will be installed at the prefix
|
|
|
|
|
defined in the Cerbero configuration file `$HOME/.cerbero/cerbero.cbc`
|
|
|
|
|
or at `$HOME/cerbero/dist` if no prefix is defined.
|
|
|
|
|
|
2016-05-16 16:23:12 +00:00
|
|
|
|
### Build a single project with the SDK
|
2016-05-16 14:30:34 +00:00
|
|
|
|
|
|
|
|
|
Rebuilding the whole SDK is relatively fast on Linux and OS X, but it
|
|
|
|
|
can be very slow on Windows, so if you only need to rebuild a single
|
|
|
|
|
project (eg: gst-plugins-good to patch qtdemux) there is a much faster
|
2016-05-16 16:23:12 +00:00
|
|
|
|
way of doing it. You will need to follow the steps detailed in this
|
|
|
|
|
page, but skipping the step "**Build the SDK**", and installing the
|
2016-05-27 02:31:36 +00:00
|
|
|
|
SDK's development files as explained in [Installing the SDK].
|
2016-05-16 14:30:34 +00:00
|
|
|
|
|
|
|
|
|
By default, Cerbero uses as prefix a folder in the user directory with
|
2016-05-27 02:31:36 +00:00
|
|
|
|
the following schema \~/cerbero/dist/$platform\_$arch, but for the SDK
|
|
|
|
|
we must change this prefix to use its installation directory. This can
|
|
|
|
|
be done with a custom configuration file named *custom.cbc*:
|
2016-05-16 14:30:34 +00:00
|
|
|
|
|
2016-05-27 02:31:36 +00:00
|
|
|
|
# For Windows x86
|
|
|
|
|
prefix='/c/gstreamer/1.0/x86/'
|
2016-05-16 16:23:12 +00:00
|
|
|
|
|
2016-05-27 02:31:36 +00:00
|
|
|
|
# For Windows x86_64
|
|
|
|
|
#prefix='/c/gstreamer/1.0/x86_64'
|
2016-05-16 16:23:12 +00:00
|
|
|
|
|
2016-05-27 02:31:36 +00:00
|
|
|
|
# For Linux
|
|
|
|
|
#prefix='/opt/gstreamer'
|
2016-05-16 16:23:12 +00:00
|
|
|
|
|
2016-05-27 02:31:36 +00:00
|
|
|
|
# For OS X
|
|
|
|
|
#prefix='/Library/Frameworks/GStreamer.framework/Versions/1.0'
|
2016-05-16 14:30:34 +00:00
|
|
|
|
|
|
|
|
|
The prefix path might not be writable by your current user. Make sure
|
|
|
|
|
you fix it before, for instance with:
|
|
|
|
|
|
2016-05-27 02:31:36 +00:00
|
|
|
|
$ sudo chown -R <username> /Library/Frameworks/GStreamer.framework/
|
2016-05-16 14:30:34 +00:00
|
|
|
|
|
|
|
|
|
Cerbero has a shell command that starts a new shell with all the
|
|
|
|
|
environment set up to target the SDK. You can start a new shell using
|
|
|
|
|
the installation prefix defined in *custom.cbc *with the following
|
|
|
|
|
command:
|
|
|
|
|
|
2016-05-27 02:31:36 +00:00
|
|
|
|
$ cerbero -c custom.cbc shell
|
2016-05-16 14:30:34 +00:00
|
|
|
|
|
2016-05-27 02:31:36 +00:00
|
|
|
|
Once you are in Cerbero's shell you can compile new projects targeting
|
|
|
|
|
the SDK using the regular build process:
|
2016-05-16 14:30:34 +00:00
|
|
|
|
|
2016-05-27 18:49:41 +00:00
|
|
|
|
$ git clone -b sdk-1.0.31 git://anongit.freedesktop.org/gstreamer-sdk/gst-plugins-good; cd gst-plugins-good
|
2016-05-27 02:31:36 +00:00
|
|
|
|
$ sh autogen.sh --disable-gtk-doc --prefix=<prefix>
|
|
|
|
|
$ make -C gst/isomp4
|
2016-05-16 14:30:34 +00:00
|
|
|
|
|
2016-05-16 16:23:12 +00:00
|
|
|
|
### Cross-compilation of the SDK
|
2016-05-16 14:30:34 +00:00
|
|
|
|
|
|
|
|
|
Cerbero can be used to cross-compile the SDK to other platforms like
|
|
|
|
|
Android or Windows. You only need to use a configuration file that sets
|
|
|
|
|
the target platform, but we also provide a set of of pre-defined
|
|
|
|
|
configuration files for the supported platforms (you will find them in
|
2016-05-16 16:23:12 +00:00
|
|
|
|
the `config` folder with the `.cbc` extension
|
2016-05-16 14:30:34 +00:00
|
|
|
|
|
2016-05-16 16:23:12 +00:00
|
|
|
|
#### Android
|
2016-05-16 14:30:34 +00:00
|
|
|
|
|
|
|
|
|
You can cross-compile the SDK for Android from a Linux host using the
|
|
|
|
|
configuration file `config/cross-android.cbc`. Replace all the previous
|
|
|
|
|
commands with:
|
|
|
|
|
|
2016-05-27 02:31:36 +00:00
|
|
|
|
cerbero -c config/cross-android.cbc <command>
|
2016-05-16 14:30:34 +00:00
|
|
|
|
|
2016-05-16 16:23:12 +00:00
|
|
|
|
#### Windows
|
2016-05-16 14:30:34 +00:00
|
|
|
|
|
|
|
|
|
The SDK can also be cross-compiled to Windows from Linux, but you should
|
|
|
|
|
only use it for testing purpose. The DirectShow plugins cannot be
|
|
|
|
|
cross-compiled yet and WiX can't be used with Wine yet, so packages can
|
|
|
|
|
only be created from Windows.
|
|
|
|
|
|
|
|
|
|
Replace all the above commands for Windows 32bits with:
|
|
|
|
|
|
2016-05-27 02:31:36 +00:00
|
|
|
|
cerbero -c config/cross-win32.cbc <command>
|
2016-05-16 14:30:34 +00:00
|
|
|
|
|
|
|
|
|
Or with using the following for Windows 64bits:
|
|
|
|
|
|
2016-05-27 02:31:36 +00:00
|
|
|
|
cerbero -c config/cross-win64.cbc <command>
|
2016-05-16 14:30:34 +00:00
|
|
|
|
|
2016-05-16 16:23:12 +00:00
|
|
|
|
#### iOS
|
2016-05-16 14:30:34 +00:00
|
|
|
|
|
|
|
|
|
To cross compile for iOS from OS X, use the configuration file
|
|
|
|
|
`config/cross-ios-universal.cbc`. Replace all previous commands with:
|
|
|
|
|
|
2016-05-27 02:31:36 +00:00
|
|
|
|
cerbero -c config/cross-ios-universal.cbc <command>
|
|
|
|
|
|
|
|
|
|
[Warning]: images/icons/emoticons/warning.png
|
|
|
|
|
[Python 2.7]: http://www.python.org/getit/releases/2.7/
|
|
|
|
|
[Git]: http://code.google.com/p/msysgit/downloads/list?q=full+installer+official+git
|
|
|
|
|
[Msys/MinGW]: https://sourceforge.net/projects/mingw/files/Installer/mingw-get-inst/
|
|
|
|
|
[CMake]: http://www.cmake.org/cmake/resources/software.htm
|
|
|
|
|
[Yasm]: http://yasm.tortall.net/Download.html
|
|
|
|
|
[WiX 3.5]: http://wix.codeplex.com/releases/view/60102
|
|
|
|
|
[Microsoft SDK 7.1]: http://www.microsoft.com/en-us/download/details.aspx?id=8279
|
|
|
|
|
[Windows Driver Kit 7.1.0]: http://msdn.microsoft.com/en-us/windows/hardware/hh852365
|
|
|
|
|
[XCode]: https://developer.apple.com/devcenter/ios/index.action#downloads
|
|
|
|
|
[here]: http://www.freedesktop.org/software/gstreamer-sdk/cerbero.cbc.template
|
|
|
|
|
[Installing the SDK]: Installing+the+SDK.markdown
|