Merge pull request #111145 from aforemny/armhf-gcc

gcc: fix armhf target
This commit is contained in:
John Ericson 2021-01-29 11:58:14 -05:00 committed by GitHub
commit 0a822bcce4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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 = {