3 # This is the script buildbot.libsdl.org uses to cross-compile SDL2 from
4 # x86 Linux to Raspberry Pi.
6 # The final tarball can be unpacked in the root directory of a RPi,
7 # so the SDL2 install lands in /usr/local. Run ldconfig, and then
8 # you should be able to build and run SDL2-based software on your
9 # Pi. Standard configure scripts should be able to find SDL and
10 # build against it, and sdl2-config should work correctly on the
15 TARBALL=sdl-raspberrypi.tar.bz2
19 if [ "$OSTYPE" != "Linux" ]; then
21 echo "This only works on x86 or x64-64 Linux at the moment." 1>&2
25 if [ "x$MAKE" == "x" ]; then
26 NCPU=`cat /proc/cpuinfo |grep vendor_id |wc -l`
31 BUILDBOTDIR="raspberrypi-buildbot"
41 SYSROOT="/opt/rpi-sysroot"
42 export CC="/opt/rpi-tools/arm-bcm2708/gcc-linaro-arm-linux-gnueabihf-raspbian/bin/arm-linux-gnueabihf-gcc --sysroot=$SYSROOT -I$SYSROOT/opt/vc/include -I$SYSROOT/usr/include -I$SYSROOT/opt/vc/include/interface/vcos/pthreads -I$SYSROOT/opt/vc/include/interface/vmcs_host/linux -L$SYSROOT/opt/vc/lib"
43 # -L$SYSROOT/usr/lib/arm-linux-gnueabihf"
44 # !!! FIXME: shouldn't have to --disable-* things here.
45 ../configure --with-sysroot=$SYSROOT --host=arm-raspberry-linux-gnueabihf --prefix=$PWD/rpi-sdl2-installed --disable-pulseaudio --disable-esd
48 # Fix up a few things to a real install path on a real Raspberry Pi...
49 perl -w -pi -e "s#$PWD/rpi-sdl2-installed#/usr/local#g;" ./rpi-sdl2-installed/lib/libSDL2.la ./rpi-sdl2-installed/lib/pkgconfig/sdl2.pc ./rpi-sdl2-installed/bin/sdl2-config
51 mv ./rpi-sdl2-installed ./usr/local
54 tar -cjvvf $TARBALL -C $BUILDBOTDIR usr
58 echo "All done. Final installable is in $TARBALL ...";