We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f573db4 commit 0a55c8eCopy full SHA for 0a55c8e
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