Puzzle: main filter update
[vlc.git] / contrib / bootstrap
bloba455992abac93ae1a5b9beb671cbe23644bf3eb9
1 #! /bin/sh
2 # Copyright (C) 2003-2011 the VideoLAN team
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2 of the License, or
7 # (at your option) any later version.
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
19 # Command line handling
21 usage()
23 echo "Usage: $0 [--build=BUILD] [--host=HOST] [--prefix=PREFIX]"
24 echo " --build=BUILD configure for building on BUILD"
25 echo " --host=HOST cross-compile to build to run on HOST"
26 echo " --prefix=PREFIX install files in PREFIX"
27 echo " --disable-FOO configure to not build package FOO"
28 echo " --enable-FOO configure to build package FOO"
29 echo " --disable-disc configure to not build optical discs packages"
30 echo " --disable-sout configure to not build stream output packages"
31 echo " --enable-small optimize libraries for size with slight speed decrease [DANGEROUS]"
32 echo " --disable-gpl configure to not build viral GPL code"
35 BUILD=
36 HOST=
37 PREFIX=
38 PKGS_ENABLE=
39 PKGS_DISABLE=
40 BUILD_ENCODERS="1"
41 BUILD_DISCS="1"
42 GPL="1"
44 if test ! -f "../../contrib/src/main.mak"
45 then
46 echo "$0 must be run from a subdirectory"
47 exit 1
50 while test -n "$1"
52 case "$1" in
53 --build=*)
54 BUILD="${1#--build=}"
56 --help|-h)
57 usage
58 exit 0
60 --host=*)
61 HOST="${1#--host=}"
63 --prefix=*)
64 PREFIX="${1#--prefix=}"
66 --disable-disc)
67 BUILD_DISCS=
69 --disable-sout)
70 BUILD_ENCODERS=
72 --enable-small)
73 ENABLE_SMALL=1
75 --disable-gpl)
76 GPL=
78 --disable-*)
79 PKGS_DISABLE="${PKGS_DISABLE} ${1#--disable-}"
81 --enable-*)
82 PKGS_ENABLE="${PKGS_ENABLE} ${1#--enable-}"
85 echo "Unrecognized options $1"
86 usage
87 exit 1
89 esac
90 shift
91 done
93 if test -z "$BUILD"
94 then
95 echo -n "Guessing build system... "
96 BUILD="`cc -dumpmachine`"
97 if test -z "$BUILD"; then
98 echo "FAIL!"
99 exit 1
101 echo "$BUILD"
104 if test -z "$HOST"
105 then
106 echo -n "Guessing host system... "
107 HOST="$BUILD"
108 echo "$HOST"
111 if test "$PREFIX"
112 then
113 # strip trailing slash
114 PREFIX="${PREFIX%/}"
118 # Prepare files
120 echo "Creating configuration file... config.mak"
121 exec 3>config.mak || exit $?
122 cat >&3 << EOF
123 # This file was automatically generated.
124 # Any change will be overwritten if ../bootstrap is run again.
125 BUILD := $BUILD
126 HOST := $HOST
127 PKGS_DISABLE := $PKGS_DISABLE
128 PKGS_ENABLE := $PKGS_ENABLE
131 add_make()
133 while test -n "$1"
135 echo "$1" >&3
136 shift
137 done
140 add_make_enabled()
142 while test -n "$1"
144 add_make "$1 := 1"
145 shift
146 done
149 check_macosx_sdk()
151 [ -z "${OSX_VERSION}" ] && echo "OSX_VERSION not specified, assuming 10.7" && OSX_VERSION=10.7
152 if test -z "$SDKROOT"
153 then
154 SDKROOT=`xcode-select -print-path`/Platforms/MacOSX.platform/Developer/SDKs/MacOSX$OSX_VERSION.sdk
155 echo "SDKROOT not specified, assuming $SDKROOT"
158 if [ ! -d "${SDKROOT}" ]
159 then
160 SDKROOT_NOT_FOUND=`xcode-select -print-path`/Platforms/MacOSX.platform/Developer/SDKs/MacOSX$OSX_VERSION.sdk
161 SDKROOT=`xcode-select -print-path`/SDKs/MacOSX$OSX_VERSION.sdk
162 echo "SDKROOT not found at $SDKROOT_NOT_FOUND, trying $SDKROOT"
165 if [ ! -d "${SDKROOT}" ]
166 then
167 echo "*** ${SDKROOT} does not exist, please install required SDK, or set SDKROOT manually. ***"
168 exit 1
171 add_make "MACOSX_SDK=${SDKROOT}"
172 add_make "OSX_VERSION ?= ${OSX_VERSION}"
175 check_ios_sdk()
177 if test -z "$SDKROOT"
178 then
179 SDKROOT=`xcode-select -print-path`/Platforms/iPhone${PLATFORM}.platform/Developer/SDKs/iPhone${PLATFORM}${SDK_VERSION}.sdk
180 echo "SDKROOT not specified, assuming $SDKROOT"
181 else
182 SDKROOT="$SDKROOT"
185 if [ ! -d "${SDKROOT}" ]
186 then
187 echo "*** ${SDKROOT} does not exist, please install required SDK, or set SDKROOT manually. ***"
188 exit 1
190 add_make "SDKROOT=${SDKROOT}"
193 check_android_sdk()
195 [ -z "${ANDROID_NDK}" ] && echo "You must set ANDROID_NDK environment variable" && exit 1
196 add_make "ANDROID_NDK := ${ANDROID_NDK}"
197 [ -z "${ANDROID_ABI}" ] && echo "You must set ANDROID_ABI environment variable" && exit 1
198 add_make "ANDROID_ABI := ${ANDROID_ABI}"
199 [ ${ANDROID_ABI} = "armeabi-v7a" ] && add_make_enabled "HAVE_NEON"
200 [ ${ANDROID_ABI} = "armeabi-v7a" ] && add_make_enabled "HAVE_ARMV7A"
203 test -z "$PREFIX" || add_make "PREFIX := $PREFIX"
204 test -z "$BUILD_DISCS" || add_make_enabled "BUILD_DISCS"
205 test -z "$BUILD_ENCODERS" || add_make_enabled "BUILD_ENCODERS"
206 test -z "$ENABLE_SMALL" || add_make_enabled "ENABLE_SMALL"
207 test -z "$GPL" || add_make_enabled "GPL"
210 # Checks
212 OS="${HOST#*-}" # strip architecture
213 case "${OS}" in
214 apple-darwin*)
215 if test -z "$BUILDFORIOS"
216 then
217 check_macosx_sdk
218 add_make_enabled "HAVE_MACOSX" "HAVE_DARWIN_OS" "HAVE_BSD"
219 else
220 check_ios_sdk
221 add_make_enabled "HAVE_IOS" "HAVE_DARWIN_OS" "HAVE_BSD" "HAVE_NEON" "HAVE_ARMV7A"
224 *bsd*)
225 add_make_enabled "HAVE_BSD"
227 *android*)
228 check_android_sdk
229 add_make_enabled "HAVE_LINUX" "HAVE_ANDROID"
230 case "${HOST}" in
231 *arm*)
232 add_make "PLATFORM_SHORT_ARCH := arm"
234 *i686*)
235 add_make "PLATFORM_SHORT_ARCH := x86"
237 *mipsel*)
238 add_make "PLATFORM_SHORT_ARCH := mips"
240 esac
242 *linux*)
243 add_make_enabled "HAVE_LINUX"
245 *wince*)
246 add_make_enabled "HAVE_WINCE"
248 *mingw*)
249 add_make_enabled "HAVE_WIN32"
251 esac
254 # Results output
256 test -e Makefile && unlink Makefile
257 ln -sf ../../contrib/src/main.mak Makefile || exit $?
258 cat << EOF
259 Bootstrap completed.
261 Run "make" to start compilation.
263 Other targets:
264 * make install same as "make"
265 * make prebuilt fetch and install prebuilt binaries
266 * make list list packages
267 * make fetch fetch required source tarballs
268 * make fetch-all fetch all source tarballs
269 * make distclean clean everything and undo bootstrap
270 * make mostlyclean clean everything except source tarballs
271 * make clean clean everything
272 * make package prepare prebuilt packages
275 mkdir -p ../../contrib/tarballs || exit $?