| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 | #!/bin/bash# This is the script buildbot.libsdl.org uses to cross-compile SDL2 from#  amd64 Linux to NaCl.# PLEASE NOTE that we have reports that SDL built with pepper_49 (current#  stable release as of November 10th, 2016) is broken. Please retest#  when something newer becomes stable and then decide if this was SDL's#  bug or NaCl's bug.  --ryan.export NACL_SDK_ROOT="/nacl_sdk/pepper_47"TARBALL="$1"if [ -z $1 ]; then    TARBALL=sdl-nacl.tar.xzfiOSTYPE=`uname -s`if [ "$OSTYPE" != "Linux" ]; then    # !!! FIXME    echo "This only works on x86 or x64-64 Linux at the moment." 1>&2    exit 1fiif [ "x$MAKE" == "x" ]; then    NCPU=`cat /proc/cpuinfo |grep vendor_id |wc -l`    let NCPU=$NCPU+1    MAKE="make -j$NCPU"fiBUILDBOTDIR="nacl-buildbot"PARENTDIR="$PWD"set -eset -xrm -f $TARBALLrm -rf $BUILDBOTDIRmkdir -p $BUILDBOTDIRpushd $BUILDBOTDIR# !!! FIXME: ccache?export CC="$NACL_SDK_ROOT/toolchain/linux_pnacl/bin/pnacl-clang"export CFLAGS="$CFLAGS -I$NACL_SDK_ROOT/include -I$NACL_SDK_ROOT/include/pnacl"export AR="$NACL_SDK_ROOT/toolchain/linux_pnacl/bin/pnacl-ar"export LD="$NACL_SDK_ROOT/toolchain/linux_pnacl/bin/pnacl-ar"export RANLIB="$NACL_SDK_ROOT/toolchain/linux_pnacl/bin/pnacl-ranlib"../configure --host=pnacl --prefix=$PWD/nacl-sdl2-installed$MAKE$MAKE install# Fix up a few things to a real install pathperl -w -pi -e "s#$PWD/nacl-sdl2-installed#/usr/local#g;" ./nacl-sdl2-installed/lib/libSDL2.la ./nacl-sdl2-installed/lib/pkgconfig/sdl2.pc ./nacl-sdl2-installed/bin/sdl2-configmkdir -p ./usrmv ./nacl-sdl2-installed ./usr/localpopdtar -cJvvf $TARBALL -C $BUILDBOTDIR usrrm -rf $BUILDBOTDIRset +xecho "All done. Final installable is in $TARBALL ...";
 |