Skip to content

Commit 3906bfc

Browse files
committed
Support for x64 build from 6.0
1 parent 62085b9 commit 3906bfc

File tree

2 files changed

+2
-15
lines changed

2 files changed

+2
-15
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88

99
strategy:
1010
matrix:
11-
api-version: ["6.0", "6.5", "8.0"]
11+
api-version: ["6.0", "6.5"]
1212
arch: [arm, arm64, x86, x64]
1313
include:
1414
- arch: arm
@@ -19,17 +19,6 @@ jobs:
1919
triple: i686-linux-gnu
2020
- arch: x64
2121
triple: x86-64-linux-gnu
22-
exclude:
23-
- api-version: "6.0"
24-
arch: x64
25-
- api-version: "6.5"
26-
arch: x64
27-
- api-version: "8.0"
28-
arch: arm
29-
- api-version: "8.0"
30-
arch: arm64
31-
- api-version: "8.0"
32-
arch: x86
3322

3423
steps:
3524
- uses: actions/checkout@v4

tools/generate_sysroot.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -242,11 +242,9 @@ def main():
242242
outpath = Path(__file__).parent.parent / 'sysroot'
243243
outpath.mkdir(exist_ok=True)
244244

245-
arches = ['arm', 'arm64', 'x86']
245+
arches = ['arm', 'arm64', 'x86', 'x64']
246246
if args.api_version >= 10.0:
247247
arches = ['arm', 'arm64', 'x64']
248-
elif args.api_version >= 8.0:
249-
arches = ['arm', 'arm64', 'x86', 'x64']
250248

251249
for arch in arches:
252250
sysroot = outpath / arch

0 commit comments

Comments
 (0)