From 8e67b77d7f3d5fc0792347fb470c178f40e99c66 Mon Sep 17 00:00:00 2001 From: Ed Reel Date: Sun, 3 Jun 2018 12:29:47 -0500 Subject: [PATCH] Fix for aarch64 systems - Tested on aarch64 Chromebook using Chromebrew --- nodebrew | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nodebrew b/nodebrew index 586983a..a07e3d4 100755 --- a/nodebrew +++ b/nodebrew @@ -732,6 +732,8 @@ sub system_info { $arch = 'armv6l'; } elsif ($machine =~ m/armv7l/) { $arch = 'armv7l'; + } elsif ($machine =~ m/aarch64/) { + $arch = 'armv7l'; } elsif ($sysname =~ m/sunos/i) { # SunOS $machine => 'i86pc'. but use 64bit kernel. # Solaris 11 not support 32bit kernel.