[infra] Remove ia32 from alpine sysroot script
Closes https://github.com/dart-lang/sdk/pull/60764 GitOrigin-RevId: 7077a42d948bd0c55ce0e6c7de6fe992e29c4ed2 Change-Id: Ib9573f3d017750a77e1faa28cd38f35851738f37 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/429820 Commit-Queue: Slava Egorov <vegorov@google.com> Reviewed-by: Slava Egorov <vegorov@google.com>
This commit is contained in:
@@ -2,6 +2,8 @@
|
||||
|
||||
This directory contains a script for community contributed alpine linux sysroot support.
|
||||
|
||||
To build the dart-sdk on alpine linux, please checkout the community maintained project https://github.com/dart-musl/dart.
|
||||
|
||||
On Alpine Linux, run the script directly:
|
||||
|
||||
``` sh
|
||||
@@ -12,8 +14,8 @@ By default, the script installs sysroots for the following architectures:
|
||||
|
||||
- `aarch64`
|
||||
- `armv7`
|
||||
- `riscv64`
|
||||
- `x86_64`
|
||||
- `x86`
|
||||
|
||||
To install sysroots for specific architectures, you can run:
|
||||
|
||||
|
||||
@@ -21,7 +21,7 @@ SCRIPT="$(readlink -f -- "$0")"
|
||||
WORKDIR="$(dirname -- "$(dirname -- "$(dirname -- "$(dirname -- "$SCRIPT")")")")"
|
||||
|
||||
if test $# -eq 0; then
|
||||
set aarch64 armv7 x86_64 x86 riscv64
|
||||
set aarch64 armv7 riscv64 x86_64
|
||||
fi
|
||||
|
||||
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"
|
||||
|
||||
Reference in New Issue
Block a user