mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-29 13:46:49 +00:00
Emulation support for cortex-a72.cortex-a53
This commit is contained in:
parent
6f7037fcd0
commit
17692fa6e3
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user