File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change 2
2
"aliases" : {
3
3
"latest" : " 3.1.15" ,
4
4
"latest-sdk" : " latest" ,
5
+ "latest-arm64-linux" : " 3.1.9" ,
5
6
"latest-64bit" : " latest" ,
6
7
"sdk-latest-64bit" : " latest" ,
7
8
"latest-upstream" : " latest" ,
Original file line number Diff line number Diff line change @@ -2186,6 +2186,9 @@ def find_latest_hash():
2186
2186
2187
2187
def resolve_sdk_aliases (name , verbose = False ):
2188
2188
releases_info = load_releases_info ()
2189
+ if name == 'latest' and LINUX and ARCH == 'aarch64' :
2190
+ print ("warning: 'latest' on arm64-linux may be slightly behind other architectures" )
2191
+ name = 'latest-arm64-linux'
2189
2192
while name in releases_info ['aliases' ]:
2190
2193
if verbose :
2191
2194
print ("Resolving SDK alias '%s' to '%s'" % (name , releases_info ['aliases' ][name ]))
You can’t perform that action at this time.
0 commit comments