Merge pull request #852 from fr500/master

try to correct the flags
This commit is contained in:
hizzlekizzle 2018-07-27 20:55:04 -05:00 committed by GitHub
commit a51c6061d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

@ -100,6 +100,7 @@ convert_xmb_assets()
if [ "${CORE_JOB}" == "YES" ]; then
# ----- set target -----
[[ "${ARM_NEON}" ]] && echo 'ARM NEON opts enabled...' && export FORMAT_COMPILER_TARGET="${FORMAT_COMPILER_TARGET}-neon"
[[ "${CORTEX_A8}" ]] && echo 'Cortex A7 opts enabled...' && export FORMAT_COMPILER_TARGET="${FORMAT_COMPILER_TARGET}-cortexa7"
[[ "${CORTEX_A8}" ]] && echo 'Cortex A8 opts enabled...' && export FORMAT_COMPILER_TARGET="${FORMAT_COMPILER_TARGET}-cortexa8"
[[ "${CORTEX_A9}" ]] && echo 'Cortex A9 opts enabled...' && export FORMAT_COMPILER_TARGET="${FORMAT_COMPILER_TARGET}-cortexa9"
[[ "${ARM_HARDFLOAT}" ]] && echo 'ARM hardfloat ABI enabled...' && export FORMAT_COMPILER_TARGET="${FORMAT_COMPILER_TARGET}-hardfloat"

View File

@ -1,4 +1,4 @@
platform armv-neon-hardfloat-cortex-a7-linux
platform linux
PLATFORM linux
MAKEPORTABLE YES
CORE_JOB YES
@ -9,3 +9,6 @@ CC arm-linux-gnueabihf-gcc
CXX arm-linux-gnueabihf-g++
CXX11 arm-linux-gnueabihf-g++
STRIP arm-linux-gnueabihf-strip
ARM_NEON true
CORTEX_A7 true
ARM_HARDFLOAT true