We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5c715de + 0a55c8e commit 0ce745bCopy full SHA for 0ce745b
configure
@@ -512,7 +512,7 @@ case $CFG_CPUTYPE in
512
CFG_OSTYPE="${CFG_OSTYPE}eabihf"
513
;;
514
515
- armv7l)
+ armv7l | armv8l)
516
CFG_CPUTYPE=armv7
517
518
src/bootstrap/bootstrap.py
@@ -465,7 +465,7 @@ def build_triple(self):
465
cputype = 'i686'
466
elif cputype in {'xscale', 'arm'}:
467
cputype = 'arm'
468
- elif cputype == 'armv7l':
+ elif cputype in {'armv7l', 'armv8l'}:
469
470
ostype += 'eabihf'
471
elif cputype == 'aarch64':
0 commit comments