Skip to content

Commit e8f4712

Browse files
ntkmeCommit Queue
authored andcommitted
[infra] Remove ia32 from alpine sysroot script
Closes #60764 GitOrigin-RevId: 7077a42 Change-Id: Ib9573f3d017750a77e1faa28cd38f35851738f37 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/429820 Commit-Queue: Slava Egorov <[email protected]> Reviewed-by: Slava Egorov <[email protected]>
1 parent 1d53d28 commit e8f4712

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

build/linux/alpine_sysroot_scripts/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
This directory contains a script for community contributed alpine linux sysroot support.
44

5+
To build the dart-sdk on alpine linux, please checkout the community maintained project https://github.com/dart-musl/dart.
6+
57
On Alpine Linux, run the script directly:
68

79
``` sh
@@ -12,8 +14,8 @@ By default, the script installs sysroots for the following architectures:
1214

1315
- `aarch64`
1416
- `armv7`
17+
- `riscv64`
1518
- `x86_64`
16-
- `x86`
1719

1820
To install sysroots for specific architectures, you can run:
1921

build/linux/alpine_sysroot_scripts/install-sysroot.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ SCRIPT="$(readlink -f -- "$0")"
2121
WORKDIR="$(dirname -- "$(dirname -- "$(dirname -- "$(dirname -- "$SCRIPT")")")")"
2222

2323
if test $# -eq 0; then
24-
set aarch64 armv7 x86_64 x86 riscv64
24+
set aarch64 armv7 riscv64 x86_64
2525
fi
2626

2727
echo "$@" | xargs -n 1 -- sh -xc 'apk add --root "$1/buildtools/sysroot/alpine-linux-$2" --repositories-file /etc/apk/repositories --allow-untrusted --arch "$2" --no-cache --no-scripts --initdb -- build-base linux-headers' -- "$WORKDIR"

0 commit comments

Comments
 (0)