Skip to content

Commit 10ce90f

Browse files
committed
Fix armv7 autodetection
armv7l is armv7 architecture and CFG_CPUTYPE should be armv7 in order to end up with armv7-unknown-linux-gnueabihf.mk rather than arm-unknown-linux-gnueabihf.mk
1 parent 69d364b commit 10ce90f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -508,7 +508,7 @@ case $CFG_CPUTYPE in
508508
;;
509509

510510
armv7l)
511-
CFG_CPUTYPE=arm
511+
CFG_CPUTYPE=armv7
512512
CFG_OSTYPE="${CFG_OSTYPE}eabihf"
513513
;;
514514

0 commit comments

Comments
 (0)