We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77f952c commit e4a5192Copy full SHA for e4a5192
tools/utils.py
@@ -73,7 +73,7 @@ def GuessOS():
73
def GuessArchitecture():
74
id = platform.machine()
75
id = id.lower() # Windows 7 capitalizes 'AMD64'.
76
- if id.startswith('armv6') # Can return 'armv6l'.
+ if id.startswith('armv6'): # Can return 'armv6l'.
77
return 'armv6'
78
elif id.startswith('arm') or id == 'aarch64':
79
return 'arm'
0 commit comments