We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27918f3 commit 4008e71Copy full SHA for 4008e71
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
@@ -464,7 +464,7 @@ def build_triple(self):
464
cputype = 'i686'
465
elif cputype in {'xscale', 'arm'}:
466
cputype = 'arm'
467
- elif cputype == 'armv7l':
+ elif cputype in {'armv7l', 'armv8l'}:
468
469
ostype += 'eabihf'
470
elif cputype == 'aarch64':
0 commit comments