Merge pull request #2563 from Raybuntu/rk_emu

Emulation support for cortex-a72.cortex-a53
This commit is contained in:
Jonas Karlman 2018-03-24 18:30:22 +01:00 committed by GitHub
commit 4ece8acdff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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