2013-05-01 02:11:22 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2013-07-13 15:32:29 +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.
|
|
|
|
|
2013-06-30 16:23:26 +00:00
|
|
|
if [ -f "libretro-config-user.sh" ]; then
|
|
|
|
. ./libretro-config-user.sh
|
|
|
|
fi
|
|
|
|
|
2013-05-01 02:11:22 +00:00
|
|
|
#if uncommented, will fetch repos with read+write access. Useful for committers
|
2013-07-13 16:31:10 +00:00
|
|
|
#export WRITERIGHTS=1
|
2013-05-18 00:53:55 +00:00
|
|
|
|
|
|
|
#if uncommented, will build libretro GL cores as well. Doesn't need to be defined for mobile platforms
|
2013-07-13 16:31:10 +00:00
|
|
|
#export BUILD_LIBRETRO_GL=1
|
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-07-13 16:25:03 +00:00
|
|
|
export ARMPLATFORM=
|
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
|