Skip to content

Commit

Permalink
Update make-linux-portable.sh to current version in Spearmint
Browse files Browse the repository at this point in the history
  • Loading branch information
zturtleman committed Mar 4, 2018
1 parent 28ce840 commit 2c99e8f
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions make-linux-portable.sh
@@ -1,16 +1,27 @@
#!/bin/sh

if [ -z "$1" ]; then
echo "Usage: $0 <arch>"
echo "Usage: $0 <arch> [make options]"
echo " arch can be x86 or x86_64"
exit 0
fi

ARCH=$1
SDL_PREFIX=/home/zack/Local/SDL-2.0.3/build-$ARCH
SDL_PREFIX=/home/zack/Local/SDL-2.0.4/build-$ARCH

if [ ! -d $SDL_PREFIX ] ; then
echo "Change SDL_PREFIX in $0 to point to SDL build output"
exit 0
fi

SDL_CFLAGS="`$SDL_PREFIX/bin/sdl2-config --cflags`"
SDL_LIBS="`$SDL_PREFIX/bin/sdl2-config --libs`"

make ARCH=$ARCH USE_PORTABLE_RPATH=1 SDL_CFLAGS="$SDL_CFLAGS" SDL_LIBS="$SDL_LIBS"
# Don't pass arch ($1) to make in $*
shift 1

make ARCH=$ARCH USE_PORTABLE_RPATH=1 SDL_CFLAGS="$SDL_CFLAGS" SDL_LIBS="$SDL_LIBS" $*

# Copy SDL lib to where spearmint will read it from
#mkdir -p build/release-linux-$ARCH/lib/$ARCH/
#cp $SDL_PREFIX/lib/libSDL2-2.0.so.0 build/release-linux-$ARCH/lib/$ARCH/

0 comments on commit 2c99e8f

Please sign in to comment.