mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-11-22 09:16:19 +00:00
0f0506af5d
Signed-off-by: Ian Leonard <antonlacon@gmail.com>
33 lines
824 B
Plaintext
33 lines
824 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"
|
|
;;
|
|
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"
|
|
|
|
# KODI Player implementation to use
|
|
KODIPLAYER_DRIVER="$OPENGLES"
|
|
|
|
# Mali GPU family
|
|
MALI_FAMILY="450"
|
|
|