gcc: fix armhf target

Fixes #96921
This commit is contained in:
Alexander Foremny 2021-01-29 09:59:40 +01:00
parent 9353ed0300
commit 75e2f7ce63

View file

@ -131,6 +131,12 @@ rec {
armhf-embedded = {
config = "arm-none-eabihf";
libc = "newlib";
# GCC8+ does not build without this
# (https://www.mail-archive.com/gcc-bugs@gcc.gnu.org/msg552339.html):
gcc = {
arch = "armv5t";
fpu = "vfp";
};
};
aarch64-embedded = {