libretro-super/libretro-build-ios10.sh
Weedy Weed Smoker 05327251f9
Add iOS 10 target (FAT binary)
The iOS 10 version is the only one supporting both 32-bit and 64-bit architectures
2019-05-31 12:34:28 +07:00

18 lines
323 B
Bash

#! /usr/bin/env bash
# vim: set ts=3 sw=3 noet ft=sh : bash
SCRIPT="${0#./}"
BASE_DIR="${SCRIPT%/*}"
WORKDIR="$PWD"
if [ "$BASE_DIR" = "$SCRIPT" ]; then
BASE_DIR="$WORKDIR"
else
if [[ "$0" != /* ]]; then
# Make the path absolute
BASE_DIR="$WORKDIR/$BASE_DIR"
fi
fi
platform=ios10 ${BASE_DIR}/libretro-build.sh $@