You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: emsdk.py
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2012,7 +2012,7 @@ def find_latest_hash():
2012
2012
defresolve_sdk_aliases(name, verbose=False):
2013
2013
releases_info=load_releases_info()
2014
2014
ifname=='latest'andLINUXandARCH=='arm64':
2015
-
print("warning: 'latest' on arm64-linux may be slightly behind other architectures")
2015
+
errlog("WARNING: 'latest' on arm64-linux may be slightly behind other architectures")
2016
2016
name='latest-arm64-linux'
2017
2017
whilenameinreleases_info['aliases']:
2018
2018
ifverbose:
@@ -3046,6 +3046,10 @@ def print_tools(t):
3046
3046
errlog("Missing parameter. Type 'emsdk install <tool name>' to install a tool or an SDK. Type 'emsdk list' to obtain a list of available tools. Type 'emsdk install latest' to automatically install the newest version of the SDK.")
3047
3047
return1
3048
3048
3049
+
ifLINUXandARCH=='arm64'andargs!= ['latest']:
3050
+
errlog('WARNING: arm64-linux binaries are not availble for all releases.')
0 commit comments