tidy up a comment (#315)

This commit is contained in:
Alon Zakai
2019-08-19 14:00:24 -07:00
committed by GitHub
parent d94e9fbc89
commit d92a831fc9

3
emsdk
View File

@@ -82,7 +82,8 @@ if not OSX and (platform.system() == 'Linux' or os.name == 'posix'):
UNIX = (OSX or LINUX)
ARCH = 'unknown'
machine = platform.machine().lower() #amd64 was not being recognised when returned as AMD64
# platform.machine() may return AMD64 on windows, so standardize the case.
machine = platform.machine().lower()
if machine.startswith('x64') or machine.startswith('amd64') or machine.startswith('x86_64'):
ARCH = 'x86_64'
elif machine.endswith('86'):