2015-02-17 03:19:30 +00:00
|
|
|
# vim: set ts=3 sw=3 noet ft=sh : bash
|
2013-05-01 02:11:22 +00:00
|
|
|
|
2015-02-19 18:14:22 +00:00
|
|
|
# The platform variable is normally not set at the time libretro-config is
|
|
|
|
# included by libretro-build.sh. Other platform scripts may begin to include
|
|
|
|
# libretro-config as well if they define their platform-specific code in the
|
|
|
|
# case block below. This is a band-aid fix that we will address after 1.1 is
|
|
|
|
# released.
|
|
|
|
|
|
|
|
case "$platform" in
|
|
|
|
##
|
|
|
|
## Configs that did not use libretro-config originally
|
|
|
|
## TODO: Integrate this with everything else (post-1.1)
|
|
|
|
##
|
|
|
|
|
|
|
|
ios)
|
|
|
|
# NOTE: This config requires a Mac with an Xcode version new enough for
|
|
|
|
# its xcrun program to support -show-sdk-path. That pretty much
|
|
|
|
# limits us to Xcode 5 and above unless someone wants to implement
|
|
|
|
# older Xcode version support using an alternate method. Any such
|
|
|
|
# support could only be for jailbreakers as any libretro core that
|
|
|
|
# could ever be added to the App Store would require a recent SDK
|
|
|
|
# and Xcode version to build.
|
|
|
|
|
|
|
|
DIST_DIR="ios"
|
|
|
|
FORMAT_EXT=dylib
|
|
|
|
IOS=1
|
2015-02-23 07:00:15 +00:00
|
|
|
ARCH=armv7
|
2015-02-19 18:14:22 +00:00
|
|
|
FORMAT=_ios
|
|
|
|
FORMAT_COMPILER_TARGET=ios
|
|
|
|
FORMAT_COMPILER_TARGET_ALT=ios
|
2015-02-28 01:34:37 +00:00
|
|
|
export IOSSDK=$(xcodebuild -version -sdk iphoneos Path)
|
|
|
|
iosver=$(xcodebuild -version -sdk iphoneos ProductVersion)
|
|
|
|
IOSVER_MAJOR=${iosver%.*}
|
|
|
|
IOSVER_MINOR=${iosver#*.}
|
2015-02-19 18:14:22 +00:00
|
|
|
IOSVER=${IOSVER_MAJOR}${IOSVER_MINOR}
|
|
|
|
|
|
|
|
# Apple requires this stuff
|
|
|
|
CC="clang -arch armv7 -miphoneos-version-min=5.0 -isysroot $IOSSDK"
|
|
|
|
CXX="clang++ -arch armv7 -miphoneos-version-min=5.0 -isysroot $IOSSDK"
|
|
|
|
CXX11="clang++ -std=c++11 -stdlib=libc++ -arch armv7 -miphoneos-version-min=5.0 -isysroot $IOSSDK"
|
|
|
|
|
|
|
|
;;
|
|
|
|
|
|
|
|
##
|
|
|
|
## Original libretro-config path
|
|
|
|
##
|
|
|
|
*)
|
|
|
|
|
|
|
|
# Architecture Assignment
|
|
|
|
config_cpu() {
|
|
|
|
[ -n "$2" ] && ARCH="$1"
|
|
|
|
[ -z "$ARCH" ] && ARCH="$(uname -m)"
|
|
|
|
case "$ARCH" in
|
|
|
|
x86_64)
|
|
|
|
X86=true
|
|
|
|
X86_64=true
|
|
|
|
;;
|
|
|
|
i386|i686)
|
|
|
|
X86=true
|
|
|
|
;;
|
|
|
|
armv*)
|
|
|
|
ARM=true
|
|
|
|
export FORMAT_COMPILER_TARGET=armv
|
|
|
|
export RARCHCFLAGS="$RARCHCFLAGS -marm"
|
|
|
|
case "${ARCH}" in
|
|
|
|
armv5tel) ARMV5=true ;;
|
|
|
|
armv6l) ARMV6=true ;;
|
|
|
|
armv7l) ARMV7=true ;;
|
|
|
|
esac
|
|
|
|
;;
|
2015-02-17 03:19:30 +00:00
|
|
|
esac
|
2015-02-19 18:14:22 +00:00
|
|
|
if [ -n "$PROCESSOR_ARCHITEW6432" -a "$PROCESSOR_ARCHITEW6432" = "AMD64" ]; then
|
|
|
|
ARCH=x86_64
|
|
|
|
X86=true && X86_64=true
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# Platform Assignment
|
|
|
|
config_platform() {
|
|
|
|
[ -n "$1" ] && platform="$1"
|
|
|
|
[ -z "$platform" ] && platform="$(uname)"
|
|
|
|
case "$platform" in
|
|
|
|
*BSD*)
|
|
|
|
FORMAT_EXT="so"
|
|
|
|
FORMAT_COMPILER_TARGET="unix"
|
|
|
|
DIST_DIR="bsd"
|
|
|
|
;;
|
|
|
|
osx|*Darwin*)
|
|
|
|
FORMAT_EXT="dylib"
|
|
|
|
FORMAT_COMPILER_TARGET="osx"
|
|
|
|
DIST_DIR="osx"
|
|
|
|
;;
|
|
|
|
win|*mingw32*|*MINGW32*|*MSYS_NT*)
|
|
|
|
FORMAT_EXT="dll"
|
|
|
|
FORMAT_COMPILER_TARGET="win"
|
|
|
|
DIST_DIR="win_x86"
|
|
|
|
;;
|
|
|
|
win64|*mingw64*|*MINGW64*)
|
|
|
|
FORMAT_EXT="dll"
|
|
|
|
FORMAT_COMPILER_TARGET="win"
|
|
|
|
DIST_DIR="win_x64"
|
|
|
|
;;
|
|
|
|
*psp1*)
|
|
|
|
FORMAT_EXT="a"
|
|
|
|
FORMAT_COMPILER_TARGET="psp1"
|
|
|
|
DIST_DIR="psp1"
|
|
|
|
;;
|
|
|
|
*ios|theos_ios*)
|
|
|
|
FORMAT_EXT="dylib"
|
|
|
|
FORMAT_COMPILER_TARGET="theos_ios"
|
|
|
|
DIST_DIR="theos"
|
|
|
|
;;
|
|
|
|
android)
|
|
|
|
FORMAT_EXT="so"
|
|
|
|
FORMAT_COMPILER_TARGET="android"
|
|
|
|
DIST_DIR="android"
|
|
|
|
;;
|
|
|
|
*android-armv7*)
|
|
|
|
FORMAT_EXT="so"
|
|
|
|
FORMAT_COMPILER_TARGET="android-armv7"
|
|
|
|
DIST_DIR="android/armeabi-v7a"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
FORMAT_EXT="so"
|
|
|
|
FORMAT_COMPILER_TARGET="unix"
|
|
|
|
DIST_DIR="unix"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
export FORMAT_COMPILER_TARGET_ALT="$FORMAT_COMPILER_TARGET"
|
|
|
|
}
|
|
|
|
|
|
|
|
config_log_build_host() {
|
|
|
|
echo "PLATFORM: $platform"
|
|
|
|
echo "ARCHITECTURE: $ARCH"
|
|
|
|
echo "TARGET: $FORMAT_COMPILER_TARGET"
|
|
|
|
}
|
|
|
|
|
|
|
|
config_cpu
|
|
|
|
config_platform
|
|
|
|
config_log_build_host
|
|
|
|
|
|
|
|
if [ -z "$JOBS" ]; then
|
|
|
|
if command -v nproc >/dev/null; then
|
|
|
|
JOBS="$(nproc)"
|
|
|
|
else
|
|
|
|
JOBS=1
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2014-07-27 02:03:21 +00:00
|
|
|
|
2013-06-30 16:23:26 +00:00
|
|
|
#if uncommented, will build experimental cores as well which are not yet fit for release.
|
2013-07-13 16:31:10 +00:00
|
|
|
#export BUILD_EXPERIMENTAL=1
|
2013-07-13 15:32:29 +00:00
|
|
|
|
|
|
|
#ARM DEFINES
|
2013-08-04 20:59:05 +00:00
|
|
|
#===========
|
|
|
|
|
2013-07-13 15:32:29 +00:00
|
|
|
#if uncommented, will build cores with Cortex A8 compiler optimizations
|
2013-07-13 16:31:10 +00:00
|
|
|
#export CORTEX_A8=1
|
2013-07-13 15:32:29 +00:00
|
|
|
|
|
|
|
#if uncommented, will build cores with Cortex A9 compiler optimizations
|
2013-07-13 16:31:10 +00:00
|
|
|
#export CORTEX_A9=1
|
2013-07-13 15:32:29 +00:00
|
|
|
|
|
|
|
#if uncommented, will build cores with ARM hardfloat ABI
|
2013-07-13 16:31:10 +00:00
|
|
|
#export ARM_HARDFLOAT=1
|
2013-07-13 15:32:29 +00:00
|
|
|
|
|
|
|
#if uncommented, will build cores with ARM softfloat ABI
|
2013-07-13 16:31:10 +00:00
|
|
|
#export ARM_SOFTFLOAT=1
|
2013-07-13 15:32:29 +00:00
|
|
|
|
|
|
|
#if uncommented, will build cores with ARM NEON support (ARMv7+ only)
|
2013-07-13 16:31:10 +00:00
|
|
|
#export ARM_NEON=1
|
2013-07-13 20:09:41 +00:00
|
|
|
|
|
|
|
#OPENGL DEFINES
|
2013-08-04 20:59:05 +00:00
|
|
|
#==============
|
2013-07-13 20:09:41 +00:00
|
|
|
|
2013-07-13 20:21:55 +00:00
|
|
|
#if uncommented, will build libretro GL cores. Ignored for mobile platforms - GL cores will always be built there.
|
2014-08-22 06:01:46 +00:00
|
|
|
export BUILD_LIBRETRO_GL=1
|
2013-07-13 20:09:41 +00:00
|
|
|
|
|
|
|
#if uncommented, will build cores with OpenGL ES 2 support. Not needed
|
2013-07-13 20:21:55 +00:00
|
|
|
#for platform-specific cores - only for generic core builds (ie. libretro-build.sh)
|
2013-07-13 20:09:41 +00:00
|
|
|
#export ENABLE_GLES=1
|
2013-08-04 20:59:05 +00:00
|
|
|
|
|
|
|
#ANDROID DEFINES
|
|
|
|
#================
|
|
|
|
|
2014-08-22 23:23:41 +00:00
|
|
|
export TARGET_ABIS="armeabi armeabi-v7a x86"
|
2014-08-18 04:19:31 +00:00
|
|
|
|
2013-08-04 20:59:05 +00:00
|
|
|
#uncomment to define NDK standalone toolchain for ARM
|
|
|
|
#export NDK_ROOT_DIR_ARM =
|
|
|
|
|
|
|
|
#uncomment to define NDK standalone toolchain for MIPS
|
|
|
|
#export NDK_ROOT_DIR_MIPS =
|
|
|
|
|
|
|
|
#uncomment to define NDK standalone toolchain for x86
|
|
|
|
#export NDK_ROOT_DIR_X86 =
|
2014-08-18 04:24:40 +00:00
|
|
|
|
|
|
|
# android version target if GLES is in use
|
2014-08-19 09:55:24 +00:00
|
|
|
export NDK_GL_HEADER_VER=android-18
|
2014-08-18 04:24:40 +00:00
|
|
|
|
|
|
|
# android version target if GLES is not in use
|
2014-08-19 09:55:24 +00:00
|
|
|
export NDK_NO_GL_HEADER_VER=android-9
|
2014-08-20 18:03:40 +00:00
|
|
|
|
|
|
|
# Retroarch target android API level
|
|
|
|
export RA_ANDROID_API=android-18
|
|
|
|
|
|
|
|
# Retroarch minimum API level (defines low end android version compatability)
|
|
|
|
export RA_ANDROID_MIN_API=android-9
|
2014-08-20 18:14:33 +00:00
|
|
|
|
2015-01-31 20:31:51 +00:00
|
|
|
#OSX DEFINES
|
|
|
|
#===========
|
|
|
|
|
|
|
|
# Define this to skip the universal build
|
|
|
|
# export NOUNIVERSAL=1
|
|
|
|
|
2015-02-01 08:42:43 +00:00
|
|
|
# ARCHFLAGS is a very convenient way of doing this for simple/obvious cores
|
|
|
|
# that don't need anything defined on the command line for 32 vs 64 bit
|
|
|
|
# systems, however it won't work for anything that does. For that, you need
|
|
|
|
# to do two separate builds, one for each arch, and then do something like:
|
|
|
|
# lipo -create core_i386.dylib core_x86_64.dylib -output core_ub.dylib
|
|
|
|
#
|
|
|
|
# If building on 10.5/10.6, it's possible that you could actually build a UB
|
|
|
|
# for Intel/PowerPC, but please don't. ;) Consider this a proof of concept
|
|
|
|
# for now just to test a few cores.
|
|
|
|
|
2015-02-18 07:17:47 +00:00
|
|
|
if [[ "$FORMAT_COMPILER_TARGET" = "osx" && -z "$NOUNIVERSAL" ]]; then
|
|
|
|
case "$ARCH" in
|
|
|
|
i386|x86_64)
|
2015-02-17 03:19:30 +00:00
|
|
|
export ARCHFLAGS="-arch i386 -arch x86_64"
|
|
|
|
;;
|
|
|
|
ppc|ppc64)
|
|
|
|
export ARCHFLAGS="-arch ppc -arch ppc64"
|
|
|
|
;;
|
|
|
|
*)
|
2015-02-22 04:36:50 +00:00
|
|
|
echo "Will not build universal binaries for unknown ARCH=\"$ARCH\""
|
|
|
|
;;
|
2015-02-17 03:19:30 +00:00
|
|
|
esac
|
2015-01-31 20:31:51 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
#CORE BUILD SUMMARY
|
|
|
|
#==================
|
2015-01-31 03:01:14 +00:00
|
|
|
|
2015-02-17 20:03:38 +00:00
|
|
|
# Uncomment this to disable the core build summary
|
|
|
|
# NOBUILD_SUMMARY=1
|
|
|
|
|
|
|
|
BUILD_SUMMARY="$WORKDIR/build-summary.log"
|
2015-01-30 10:38:10 +00:00
|
|
|
|
2015-01-31 03:01:14 +00:00
|
|
|
|
2015-02-19 06:31:02 +00:00
|
|
|
# BUILD_REVISIONS
|
|
|
|
# ===============
|
|
|
|
#
|
|
|
|
# libretro-super can save a revision string (e.g., the git sha hash) for any
|
|
|
|
# core it has compiled. If this feature is enabled, it will check if the
|
|
|
|
# revison string has changed before it compiles the core. This can speed up
|
|
|
|
# the build process for end-users and buildbots, and it also results in nightly
|
|
|
|
# build directories being smaller. It is not enabled by default because it
|
|
|
|
# cannot know about uncommitted changes in a working directory.
|
|
|
|
|
|
|
|
# Set this to enable the feature
|
|
|
|
#SKIP_UNCHANGED=1
|
|
|
|
|
2015-02-19 06:45:23 +00:00
|
|
|
# Set this if you don't like the default
|
|
|
|
#BUILD_REVISIONS_DIR="$WORKDIR/build-revisions"
|
|
|
|
|
2015-02-19 06:31:02 +00:00
|
|
|
|
2014-08-20 18:14:33 +00:00
|
|
|
#USER DEFINES
|
|
|
|
#------------
|
|
|
|
#These options should be defined inside your own
|
|
|
|
#local libretro-config-user.sh file rather than here.
|
|
|
|
#The following below is just a sample.
|
|
|
|
|
2015-02-18 00:04:25 +00:00
|
|
|
if [ -f "$WORKDIR/libretro-config-user.sh" ]; then
|
|
|
|
. "$WORKDIR/libretro-config-user.sh"
|
2014-08-20 18:14:33 +00:00
|
|
|
fi
|