1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 07:14:47 -05:00

feat: use sysroot for ARM64 (#22329)

Follow-up from #22298: Use a sysroot to build ARM64 so we work all the
way back to Xenial.

We generate a sysroot ahead-of-time in the
https://github.com/denoland/deno_sysroot_build project and use that to
bootstrap a sysroot here.
This commit is contained in:
Matt Mastracci 2024-02-07 16:17:21 -07:00 committed by GitHub
parent 8a8dffbafc
commit 13616d62e9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 55 additions and 39 deletions

View file

@ -64,11 +64,14 @@ const installPkgsCommand =
`sudo apt-get install --no-install-recommends debootstrap clang-${llvmVersion} lld-${llvmVersion} clang-tools-${llvmVersion} clang-format-${llvmVersion} clang-tidy-${llvmVersion}`; `sudo apt-get install --no-install-recommends debootstrap clang-${llvmVersion} lld-${llvmVersion} clang-tools-${llvmVersion} clang-format-${llvmVersion} clang-tidy-${llvmVersion}`;
const sysRootStep = { const sysRootStep = {
name: "Set up incremental LTO and sysroot build", name: "Set up incremental LTO and sysroot build",
run: `# Avoid running man-db triggers, which sometimes takes several minutes run: `# Setting up sysroot
export DEBIAN_FRONTEND=noninteractive
# Avoid running man-db triggers, which sometimes takes several minutes
# to complete. # to complete.
sudo apt-get remove --purge -y man-db sudo apt-get -qq remove --purge -y man-db > /dev/null 2> /dev/null
# Remove older clang before we install # Remove older clang before we install
sudo apt-get remove 'clang-12*' 'clang-13*' 'clang-14*' 'clang-15*' 'llvm-12*' 'llvm-13*' 'llvm-14*' 'llvm-15*' 'lld-12*' 'lld-13*' 'lld-14*' 'lld-15*' sudo apt-get -qq remove \
'clang-12*' 'clang-13*' 'clang-14*' 'clang-15*' 'llvm-12*' 'llvm-13*' 'llvm-14*' 'llvm-15*' 'lld-12*' 'lld-13*' 'lld-14*' 'lld-15*' > /dev/null 2> /dev/null
# Install clang-XXX, lld-XXX, and debootstrap. # Install clang-XXX, lld-XXX, and debootstrap.
echo "deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-${llvmVersion} main" | echo "deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-${llvmVersion} main" |
@ -80,27 +83,30 @@ sudo apt-get update
# this was unreliable sometimes, so try again if it fails # this was unreliable sometimes, so try again if it fails
${installPkgsCommand} || echo 'Failed. Trying again.' && sudo apt-get clean && sudo apt-get update && ${installPkgsCommand} ${installPkgsCommand} || echo 'Failed. Trying again.' && sudo apt-get clean && sudo apt-get update && ${installPkgsCommand}
# Fix alternatives # Fix alternatives
(yes '' | sudo update-alternatives --force --all) || true (yes '' | sudo update-alternatives --force --all) || true > /dev/null 2> /dev/null
# Create ubuntu-16.04 sysroot environment, which is used to avoid echo "Decompressing sysroot..."
# depending on a very recent version of glibc. wget -q https://github.com/denoland/deno_sysroot_build/releases/download/sysroot-20240207/sysroot-\`uname -m\`.tar.xz -O /tmp/sysroot.tar.xz
# \`libc6-dev\` is required for building any C source files. cd /
# \`file\` and \`make\` are needed to build libffi-sys. xzcat /tmp/sysroot.tar.xz | sudo tar -x
# \`curl\` is needed to build rusty_v8.
sudo debootstrap \\
--include=ca-certificates,curl,file,libc6-dev,make \\
--no-merged-usr --variant=minbase xenial /sysroot \\
http://azure.archive.ubuntu.com/ubuntu
sudo mount --rbind /dev /sysroot/dev sudo mount --rbind /dev /sysroot/dev
sudo mount --rbind /sys /sysroot/sys sudo mount --rbind /sys /sysroot/sys
sudo mount --rbind /home /sysroot/home sudo mount --rbind /home /sysroot/home
sudo mount -t proc /proc /sysroot/proc sudo mount -t proc /proc /sysroot/proc
cd
wget https://github.com/denoland/deno_third_party/raw/master/prebuilt/linux64/libdl/libdl.a if [[ \`uname -m\` == "aarch64" ]]; then
wget https://github.com/denoland/deno_third_party/raw/master/prebuilt/linux64/libdl/libdl.so.2 echo "Copying libdl.a"
sudo cp /sysroot/usr/lib/aarch64-linux-gnu/libdl.a /sysroot/lib/aarch64-linux-gnu/libdl.a
echo "Copying libdl.so"
sudo cp /sysroot/lib/aarch64-linux-gnu/libdl.so.2 /sysroot/lib/aarch64-linux-gnu/libdl.so
else
wget https://github.com/denoland/deno_third_party/raw/master/prebuilt/linux64/libdl/libdl.a
wget https://github.com/denoland/deno_third_party/raw/master/prebuilt/linux64/libdl/libdl.so.2
sudo ln -s libdl.so.2 /sysroot/lib/x86_64-linux-gnu/libdl.so sudo ln -s libdl.so.2 /sysroot/lib/x86_64-linux-gnu/libdl.so
sudo ln -s libdl.a /sysroot/lib/x86_64-linux-gnu/libdl.a sudo ln -s libdl.a /sysroot/lib/x86_64-linux-gnu/libdl.a
fi
# Configure the build environment. Both Rust and Clang will produce # Configure the build environment. Both Rust and Clang will produce
# llvm bitcode only, so we can use lld's incremental LTO support. # llvm bitcode only, so we can use lld's incremental LTO support.
@ -413,6 +419,7 @@ const ci = {
...Runners.linuxArm, ...Runners.linuxArm,
job: "test", job: "test",
profile: "release", profile: "release",
use_sysroot: true,
}, { }, {
...Runners.macosX86, ...Runners.macosX86,
job: "lint", job: "lint",
@ -676,9 +683,10 @@ const ci = {
"(github.ref == 'refs/heads/main' ||", "(github.ref == 'refs/heads/main' ||",
"startsWith(github.ref, 'refs/tags/'))))", "startsWith(github.ref, 'refs/tags/'))))",
].join("\n"), ].join("\n"),
uses: "actions/upload-artifact@v3", uses: "actions/upload-artifact@v4",
with: { with: {
name: "deno-${{ github.event.number }}", name:
"deno-${{ matrix.os }}-${{ matrix.arch }}-${{ github.event.number }}",
path: "target/release/deno", path: "target/release/deno",
}, },
}, },
@ -808,8 +816,10 @@ const ci = {
}, },
{ {
// Verify that the binary actually works in the Ubuntu-16.04 sysroot. // Verify that the binary actually works in the Ubuntu-16.04 sysroot.
// TODO(mmastrac): make this work for aarch64 as well
name: "Check deno binary (in sysroot)", name: "Check deno binary (in sysroot)",
if: "matrix.profile == 'release' && matrix.use_sysroot", if:
"matrix.profile == 'release' && matrix.use_sysroot && matrix.arch != 'aarch64'",
run: 'sudo chroot /sysroot "$(pwd)/target/release/deno" --version', run: 'sudo chroot /sysroot "$(pwd)/target/release/deno" --version',
}, },
{ {

View file

@ -121,6 +121,7 @@ jobs:
runner: ubicloud-standard-16-arm runner: ubicloud-standard-16-arm
job: test job: test
profile: release profile: release
use_sysroot: true
- os: macos - os: macos
arch: x86_64 arch: x86_64
runner: macos-12 runner: macos-12
@ -246,11 +247,13 @@ jobs:
- if: '!(matrix.skip) && (matrix.use_sysroot)' - if: '!(matrix.skip) && (matrix.use_sysroot)'
name: Set up incremental LTO and sysroot build name: Set up incremental LTO and sysroot build
run: |- run: |-
# Setting up sysroot
export DEBIAN_FRONTEND=noninteractive
# Avoid running man-db triggers, which sometimes takes several minutes # Avoid running man-db triggers, which sometimes takes several minutes
# to complete. # to complete.
sudo apt-get remove --purge -y man-db sudo apt-get -qq remove --purge -y man-db > /dev/null 2> /dev/null
# Remove older clang before we install # Remove older clang before we install
sudo apt-get remove 'clang-12*' 'clang-13*' 'clang-14*' 'clang-15*' 'llvm-12*' 'llvm-13*' 'llvm-14*' 'llvm-15*' 'lld-12*' 'lld-13*' 'lld-14*' 'lld-15*' sudo apt-get -qq remove 'clang-12*' 'clang-13*' 'clang-14*' 'clang-15*' 'llvm-12*' 'llvm-13*' 'llvm-14*' 'llvm-15*' 'lld-12*' 'lld-13*' 'lld-14*' 'lld-15*' > /dev/null 2> /dev/null
# Install clang-XXX, lld-XXX, and debootstrap. # Install clang-XXX, lld-XXX, and debootstrap.
echo "deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-16 main" | echo "deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-16 main" |
@ -262,27 +265,30 @@ jobs:
# this was unreliable sometimes, so try again if it fails # this was unreliable sometimes, so try again if it fails
sudo apt-get install --no-install-recommends debootstrap clang-16 lld-16 clang-tools-16 clang-format-16 clang-tidy-16 || echo 'Failed. Trying again.' && sudo apt-get clean && sudo apt-get update && sudo apt-get install --no-install-recommends debootstrap clang-16 lld-16 clang-tools-16 clang-format-16 clang-tidy-16 sudo apt-get install --no-install-recommends debootstrap clang-16 lld-16 clang-tools-16 clang-format-16 clang-tidy-16 || echo 'Failed. Trying again.' && sudo apt-get clean && sudo apt-get update && sudo apt-get install --no-install-recommends debootstrap clang-16 lld-16 clang-tools-16 clang-format-16 clang-tidy-16
# Fix alternatives # Fix alternatives
(yes '' | sudo update-alternatives --force --all) || true (yes '' | sudo update-alternatives --force --all) || true > /dev/null 2> /dev/null
# Create ubuntu-16.04 sysroot environment, which is used to avoid echo "Decompressing sysroot..."
# depending on a very recent version of glibc. wget -q https://github.com/denoland/deno_sysroot_build/releases/download/sysroot-20240207/sysroot-`uname -m`.tar.xz -O /tmp/sysroot.tar.xz
# `libc6-dev` is required for building any C source files. cd /
# `file` and `make` are needed to build libffi-sys. xzcat /tmp/sysroot.tar.xz | sudo tar -x
# `curl` is needed to build rusty_v8.
sudo debootstrap \
--include=ca-certificates,curl,file,libc6-dev,make \
--no-merged-usr --variant=minbase xenial /sysroot \
http://azure.archive.ubuntu.com/ubuntu
sudo mount --rbind /dev /sysroot/dev sudo mount --rbind /dev /sysroot/dev
sudo mount --rbind /sys /sysroot/sys sudo mount --rbind /sys /sysroot/sys
sudo mount --rbind /home /sysroot/home sudo mount --rbind /home /sysroot/home
sudo mount -t proc /proc /sysroot/proc sudo mount -t proc /proc /sysroot/proc
cd
wget https://github.com/denoland/deno_third_party/raw/master/prebuilt/linux64/libdl/libdl.a if [[ `uname -m` == "aarch64" ]]; then
wget https://github.com/denoland/deno_third_party/raw/master/prebuilt/linux64/libdl/libdl.so.2 echo "Copying libdl.a"
sudo cp /sysroot/usr/lib/aarch64-linux-gnu/libdl.a /sysroot/lib/aarch64-linux-gnu/libdl.a
echo "Copying libdl.so"
sudo cp /sysroot/lib/aarch64-linux-gnu/libdl.so.2 /sysroot/lib/aarch64-linux-gnu/libdl.so
else
wget https://github.com/denoland/deno_third_party/raw/master/prebuilt/linux64/libdl/libdl.a
wget https://github.com/denoland/deno_third_party/raw/master/prebuilt/linux64/libdl/libdl.so.2
sudo ln -s libdl.so.2 /sysroot/lib/x86_64-linux-gnu/libdl.so sudo ln -s libdl.so.2 /sysroot/lib/x86_64-linux-gnu/libdl.so
sudo ln -s libdl.a /sysroot/lib/x86_64-linux-gnu/libdl.a sudo ln -s libdl.a /sysroot/lib/x86_64-linux-gnu/libdl.a
fi
# Configure the build environment. Both Rust and Clang will produce # Configure the build environment. Both Rust and Clang will produce
# llvm bitcode only, so we can use lld's incremental LTO support. # llvm bitcode only, so we can use lld's incremental LTO support.
@ -403,9 +409,9 @@ jobs:
(github.repository == 'denoland/deno' && (github.repository == 'denoland/deno' &&
(github.ref == 'refs/heads/main' || (github.ref == 'refs/heads/main' ||
startsWith(github.ref, 'refs/tags/'))))) startsWith(github.ref, 'refs/tags/')))))
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v4
with: with:
name: 'deno-${{ github.event.number }}' name: 'deno-${{ matrix.os }}-${{ matrix.arch }}-${{ github.event.number }}'
path: target/release/deno path: target/release/deno
- name: Pre-release (linux) - name: Pre-release (linux)
if: |- if: |-
@ -489,7 +495,7 @@ jobs:
env: env:
NO_COLOR: 1 NO_COLOR: 1
- name: Check deno binary (in sysroot) - name: Check deno binary (in sysroot)
if: '!(matrix.skip) && (matrix.profile == ''release'' && matrix.use_sysroot)' if: '!(matrix.skip) && (matrix.profile == ''release'' && matrix.use_sysroot && matrix.arch != ''aarch64'')'
run: sudo chroot /sysroot "$(pwd)/target/release/deno" --version run: sudo chroot /sysroot "$(pwd)/target/release/deno" --version
- name: Configure hosts file for WPT - name: Configure hosts file for WPT
if: '!(matrix.skip) && (matrix.wpt)' if: '!(matrix.skip) && (matrix.wpt)'