Skip to content

Commit

Permalink
Emulation support for cortex-a72.cortex-a53
Browse files Browse the repository at this point in the history
  • Loading branch information
Radostan Riedel committed Mar 20, 2018
1 parent 6f7037f commit 17692fa
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/emulation/libretro-beetle-pcfx/package.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/emulation/libretro-craft/package.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/emulation/libretro-mame2010/package.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/emulation/libretro-mame2014/package.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/emulation/libretro-mupen64plus/package.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 17692fa

Please sign in to comment.