mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-11-24 07:56:21 +00:00
0f0506af5d
Signed-off-by: Ian Leonard <antonlacon@gmail.com>
35 lines
902 B
Plaintext
35 lines
902 B
Plaintext
################################################################################
|
|
# setup device defaults
|
|
################################################################################
|
|
|
|
# The TARGET_CPU variable controls which processor should be targeted for
|
|
# generated code.
|
|
case $TARGET_ARCH in
|
|
aarch64)
|
|
TARGET_CPU="cortex-a53"
|
|
TARGET_CPU_FLAGS="+crc+fp+simd"
|
|
;;
|
|
arm)
|
|
TARGET_KERNEL_ARCH="arm64"
|
|
TARGET_FLOAT="hard"
|
|
TARGET_CPU="cortex-a53"
|
|
TARGET_CPU_FLAGS="+crc"
|
|
TARGET_FPU="neon-fp-armv8"
|
|
;;
|
|
esac
|
|
|
|
# OpenGL-ES implementation to use
|
|
OPENGLES="mesa"
|
|
|
|
# Graphic drivers to use
|
|
GRAPHIC_DRIVERS="lima panfrost"
|
|
|
|
# KODI Player implementation to use
|
|
KODIPLAYER_DRIVER="$OPENGLES"
|
|
|
|
# Mali GPU family
|
|
MALI_FAMILY="450 t820 g31 g52"
|
|
|
|
# Set the addon project
|
|
ADDON_PROJECT="ARMv8"
|