Add armv6l autodetection

Use arm-unknown-linux-gnueabihf for hardware floating point armv6 variant
This commit is contained in:
Matwey V. Kornilov 2016-10-30 11:27:58 +03:00
parent 10ce90fca2
commit 9b81f3c81b

5
configure vendored
View File

@ -507,6 +507,11 @@ case $CFG_CPUTYPE in
CFG_CPUTYPE=arm
;;
armv6l)
CFG_CPUTYPE=arm
CFG_OSTYPE="${CFG_OSTYPE}eabihf"
;;
armv7l)
CFG_CPUTYPE=armv7
CFG_OSTYPE="${CFG_OSTYPE}eabihf"