Add comment on individual uname -m clause

This commit is contained in:
Trevor Brown 2020-11-23 08:48:26 -05:00 committed by Augusto Moura
parent cc7c7d20ae
commit adb47b8bc9

View File

@ -86,6 +86,7 @@ get_nodejs_machine_hardware_name() {
case "$machine_hardware_name" in
'x86_64') local cpu_type="x64";;
# For FreeBSD
'amd64') local cpu_type="x64";;
'i686') local cpu_type="x86";;
'aarch64') local cpu_type="arm64";;