From 9b81f3c81b6340221f9713afa9ead070086d7314 Mon Sep 17 00:00:00 2001 From: "Matwey V. Kornilov" Date: Sun, 30 Oct 2016 11:27:58 +0300 Subject: [PATCH] Add armv6l autodetection Use arm-unknown-linux-gnueabihf for hardware floating point armv6 variant --- configure | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/configure b/configure index d62084cb465..4e62e49412e 100755 --- a/configure +++ b/configure @@ -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"