ARM params can be bilt up properly now

This commit is contained in:
twinaphex 2013-07-13 18:31:10 +02:00
parent fbf62c0b08
commit 3b79a2ebf5
2 changed files with 18 additions and 13 deletions

View File

@ -18,23 +18,28 @@ export ARMPLATFORM=$ARMPLATFORM-armv
if [ "$ARM_NEON" ]; then if [ "$ARM_NEON" ]; then
echo "=== ARM NEON opts enabled... ===" echo "=== ARM NEON opts enabled... ==="
export ARMPLATFORM = $ARMPLATFORM-neon export ARMPLATFORM=$ARMPLATFORM-neon
echo $ARMPLATFORM
fi fi
if [ "$CORTEX_A8" ]; then if [ "$CORTEX_A8" ]; then
echo "=== Cortex A8 opts enabled... ===" echo "=== Cortex A8 opts enabled... ==="
export ARMPLATFORM = $ARMPLATFORM-cortexa8 export ARMPLATFORM=$ARMPLATFORM-cortexa8
echo $ARMPLATFORM
fi fi
if [ "$CORTEX_A9" ]; then if [ "$CORTEX_A9" ]; then
echo "=== Cortex A9 opts enabled... ===" echo "=== Cortex A9 opts enabled... ==="
export ARMPLATFORM = $ARMPLATFORM-cortexa9 export ARMPLATFORM=$ARMPLATFORM-cortexa9
echo $ARMPLATFORM
fi fi
if [ "$ARM_HARDFLOAT" ]; then if [ "$ARM_HARDFLOAT" ]; then
echo "=== ARM hardfloat ABI enabled... ===" echo "=== ARM hardfloat ABI enabled... ==="
ARMPLATFORM = $ARMPLATFORM-hardfloat export ARMPLATFORM=$ARMPLATFORM-hardfloat
echo $ARMPLATFORM
fi fi
if [ "$ARM_SOFTFLOAT" ]; then if [ "$ARM_SOFTFLOAT" ]; then
echo "=== ARM softfloat ABI enabled... ===" echo "=== ARM softfloat ABI enabled... ==="
ARMPLATFORM += ARMPLATFORM-softfloat export ARMPLATFORM=ARMPLATFORM-softfloat
echo $ARMPLATFORM
fi fi
build_libretro_fba_full() build_libretro_fba_full()

View File

@ -11,29 +11,29 @@ if [ -f "libretro-config-user.sh" ]; then
fi fi
#if uncommented, will fetch repos with read+write access. Useful for committers #if uncommented, will fetch repos with read+write access. Useful for committers
#export WRITERIGHTS #export WRITERIGHTS=1
#if uncommented, will build libretro GL cores as well. Doesn't need to be defined for mobile platforms #if uncommented, will build libretro GL cores as well. Doesn't need to be defined for mobile platforms
#export BUILD_LIBRETRO_GL #export BUILD_LIBRETRO_GL=1
#if uncommented, will build experimental cores as well which are not yet fit for release. #if uncommented, will build experimental cores as well which are not yet fit for release.
#export BUILD_EXPERIMENTAL #export BUILD_EXPERIMENTAL=1
#ARM DEFINES #ARM DEFINES
#----------- #-----------
export ARMPLATFORM= export ARMPLATFORM=
#if uncommented, will build cores with Cortex A8 compiler optimizations #if uncommented, will build cores with Cortex A8 compiler optimizations
#export CORTEX_A8 #export CORTEX_A8=1
#if uncommented, will build cores with Cortex A9 compiler optimizations #if uncommented, will build cores with Cortex A9 compiler optimizations
#export CORTEX_A9 #export CORTEX_A9=1
#if uncommented, will build cores with ARM hardfloat ABI #if uncommented, will build cores with ARM hardfloat ABI
#export ARM_HARDFLOAT #export ARM_HARDFLOAT=1
#if uncommented, will build cores with ARM softfloat ABI #if uncommented, will build cores with ARM softfloat ABI
#export ARM_SOFTFLOAT #export ARM_SOFTFLOAT=1
#if uncommented, will build cores with ARM NEON support (ARMv7+ only) #if uncommented, will build cores with ARM NEON support (ARMv7+ only)
#export ARM_NEON #export ARM_NEON=1