File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python3
2
2
# Copyright (c) Meta Platforms, Inc. and affiliates.
3
+ # Copyright 2024 Arm Limited and/or its affiliates.
3
4
# All rights reserved.
4
5
#
5
6
# This source code is licensed under the BSD-style license found in the
@@ -72,6 +73,10 @@ class BuckInfo:
72
73
"029b0bcc6f8e399185c1d0f574eba204934722b5" ,
73
74
],
74
75
),
76
+ ("linux" , "aarch64" ): BuckInfo (
77
+ archive_name = "buck2-aarch64-unknown-linux-gnu.zst" ,
78
+ target_versions = ["49670bee56a7d8a7696409ca6fbf7551d2469787" ],
79
+ ),
75
80
("darwin" , "aarch64" ): BuckInfo (
76
81
archive_name = "buck2-aarch64-apple-darwin.zst" ,
77
82
target_versions = ["99773fe6f7963a72ae5f7b737c02836e" ],
@@ -122,7 +127,7 @@ def resolve_buck2(args: argparse.Namespace) -> Union[str, int]:
122
127
arch = "unknown"
123
128
if machine == "x86" or machine == "x86_64" or machine == "amd64" :
124
129
arch = "x86_64"
125
- elif machine == "arm64" :
130
+ elif machine == "arm64" or machine == "aarch64" :
126
131
arch = "aarch64"
127
132
128
133
os_family = "unknown"
You can’t perform that action at this time.
0 commit comments