mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2025-02-01 18:12:28 +00:00
f6d9ad0b83
Signed-off-by: Matthias Reichl <hias@horus.com>
23 lines
630 B
Plaintext
23 lines
630 B
Plaintext
################################################################################
|
|
# setup device defaults
|
|
################################################################################
|
|
|
|
# The TARGET_CPU variable controls which processor should be targeted for
|
|
# generated code.
|
|
case $TARGET_ARCH in
|
|
arm)
|
|
TARGET_CPU="cortex-a15.cortex-a7"
|
|
TARGET_FLOAT="hard"
|
|
TARGET_FPU="neon-vfpv4"
|
|
;;
|
|
esac
|
|
|
|
# OpenGL-ES implementation to use
|
|
OPENGLES="mesa"
|
|
|
|
# Graphic drivers to use
|
|
GRAPHIC_DRIVERS="panfrost"
|
|
|
|
# KODI Player implementation to use
|
|
KODIPLAYER_DRIVER="$OPENGLES"
|