From 33787ab248d9f2661ee26ee44087d0a80ac26ed2 Mon Sep 17 00:00:00 2001 From: Relintai Date: Sun, 21 Apr 2024 01:48:13 +0200 Subject: [PATCH] Added missing keys. --- platform/frt/detect.py | 1 + platform/frt_sdl/detect.py | 1 + 2 files changed, 2 insertions(+) diff --git a/platform/frt/detect.py b/platform/frt/detect.py index 45e249c54..085fc3b47 100644 --- a/platform/frt/detect.py +++ b/platform/frt/detect.py @@ -86,6 +86,7 @@ def configure(env): if env['frt_cross'] != 'no': if env['frt_cross'] == 'auto': triple = { + 'arm32v6': 'arm-linux-gnueabihf', 'arm32v7': 'arm-linux-gnueabihf', 'arm64v8': 'aarch64-linux-gnu', }[env['frt_arch']] diff --git a/platform/frt_sdl/detect.py b/platform/frt_sdl/detect.py index 4b4d1d37c..caa26685d 100644 --- a/platform/frt_sdl/detect.py +++ b/platform/frt_sdl/detect.py @@ -64,6 +64,7 @@ def configure_cross(env): return if env['frt_cross'] == 'auto': triple = { + 'arm32v6': 'arm-linux-gnueabihf', 'arm32v7': 'arm-linux-gnueabihf', 'arm64v8': 'aarch64-linux-gnu', }[env['frt_arch']]