about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatwey V. Kornilov <matwey.kornilov@gmail.com>2016-10-30 11:27:58 +0300
committerMatwey V. Kornilov <matwey.kornilov@gmail.com>2016-10-30 11:27:58 +0300
commit9b81f3c81b6340221f9713afa9ead070086d7314 (patch)
treee63d2ee3067cf6f3d63a47c4d66f02747df0ac74
parent10ce90fca20fce776b8bdad504a5e3b915ded99f (diff)
downloadrust-9b81f3c81b6340221f9713afa9ead070086d7314.tar.gz
rust-9b81f3c81b6340221f9713afa9ead070086d7314.zip
Add armv6l autodetection
Use arm-unknown-linux-gnueabihf for hardware floating point armv6 variant
-rwxr-xr-xconfigure5
1 files changed, 5 insertions, 0 deletions
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"