Emulation support for cortex-a72.cortex-a53

This commit is contained in:
Radostan Riedel 2018-02-10 10:12:57 +01:00
parent 6f7037fcd0
commit 17692fa6e3
5 changed files with 5 additions and 5 deletions

View File

@ -41,7 +41,7 @@ make_target() {
cortex-a7)
make platform=armv7-neon-hardfloat
;;
cortex-a9|cortex-a53|cortex-a17)
cortex-a9|*cortex-a53|cortex-a17)
if [ "$TARGET_ARCH" = "aarch64" ]; then
make platform=aarch64
else

View File

@ -55,7 +55,7 @@ make_target() {
make -f Makefile.libretro
;;
*)
if [ "$TARGET_CPU" = "cortex-a9" ] || [ "$TARGET_CPU" = "cortex-a53" ] || [ "$TARGET_CPU" = "cortex-a17" ]; then
if [[ "$TARGET_CPU" = "cortex-a9" ]] || [[ "$TARGET_CPU" = *"cortex-a53" ]] || [[ "$TARGET_CPU" = "cortex-a17" ]]; then
if [ "$TARGET_ARCH" = "aarch64" ]; then
make -f Makefile.libretro platform=aarch64
else

View File

@ -48,7 +48,7 @@ make_target() {
cortex-a7|cortex-a9)
make platform=armv7-neon-hardfloat-$TARGET_CPU
;;
cortex-a53|cortex-a17)
*cortex-a53|cortex-a17)
if [ "$TARGET_ARCH" = "aarch64" ]; then
make platform=aarch64
else

View File

@ -48,7 +48,7 @@ make_target() {
cortex-a7|cortex-a9)
make platform=armv7-neon-hardfloat-$TARGET_CPU
;;
cortex-a53|cortex-a17)
*cortex-a53|cortex-a17)
if [ "$TARGET_ARCH" = "aarch64" ]; then
make platform=aarch64
else

View File

@ -53,7 +53,7 @@ make_target() {
make WITH_DYNAREC=x86_64
;;
*)
if [ "$TARGET_CPU" = "cortex-a9" ] || [ "$TARGET_CPU" = "cortex-a53" ] || [ "$TARGET_CPU" = "cortex-a17" ]; then
if [[ "$TARGET_CPU" = "cortex-a9" ]] || [[ "$TARGET_CPU" = *"cortex-a53" ]] || [[ "$TARGET_CPU" = "cortex-a17" ]]; then
if [ "$TARGET_ARCH" = "aarch64" ]; then
make platform=aarch64
else