aboutsummaryrefslogtreecommitdiffstats
path: root/erts/configure.in
diff options
context:
space:
mode:
authorKlaus Alfert <[email protected]>2013-05-28 00:23:38 +0200
committerKlaus Alfert <[email protected]>2013-05-28 00:23:38 +0200
commit0c975f912f145a7be25841a9b0225b402b8071f3 (patch)
treebe002a980ad44596f3636c1a7a27969cf63b7f2a /erts/configure.in
parent01eb20066918e107811d01f43b97e3925f894dbd (diff)
downloadotp-0c975f912f145a7be25841a9b0225b402b8071f3.tar.gz
otp-0c975f912f145a7be25841a9b0225b402b8071f3.tar.bz2
otp-0c975f912f145a7be25841a9b0225b402b8071f3.zip
add support for hipe on Raspberry Pi (armv6l)
To enable hipe on a Raspberry Pi, configure has to detect the ARM processor correctly. On a Pi, uname detects the CPU as armv6l. Other CPU variants are already detected with ARCH=arm, so does now the armv6l of the Raspberry Pi.
Diffstat (limited to 'erts/configure.in')
-rw-r--r--erts/configure.in1
1 files changed, 1 insertions, 0 deletions
diff --git a/erts/configure.in b/erts/configure.in
index b9c9a76ef6..c47c211c4e 100644
--- a/erts/configure.in
+++ b/erts/configure.in
@@ -624,6 +624,7 @@ case $chk_arch_ in
armv5teb) ARCH=arm;;
armv5tel) ARCH=arm;;
armv5tejl) ARCH=arm;;
+ armv6l) ARCH=arm;;
armv7l) ARCH=arm;;
tile) ARCH=tile;;
*) ARCH=noarch;;