Skip to content

Commit

Permalink
Try mold
Browse files Browse the repository at this point in the history
  • Loading branch information
james58899 committed Mar 16, 2024
1 parent 86290f0 commit 0b892e5
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ jobs:
env:
CC: clang-17
CXX: clang-17
CFLAGS: "-flto -fuse-ld=lld-17"
CXXFLAGS: "-flto -fuse-ld=lld-17"
CFLAGS: "-flto -fuse-ld=mold"
CXXFLAGS: "-flto -fuse-ld=mold"
steps:
- uses: actions/checkout@v4
- name: Install build tools
Expand All @@ -43,6 +43,10 @@ jobs:
echo "deb http://apt.llvm.org/focal/ llvm-toolchain-focal-17 main" | sudo tee /etc/apt/sources.list.d/llvm.list
sudo apt-get update
sudo apt-get install -y crossbuild-essential-arm64 crossbuild-essential-armhf clang-17
- name: Install mold
uses: rui314/setup-mold@v1
with:
make-default: false
- uses: actions/cache@v4
with:
path: |
Expand All @@ -60,10 +64,10 @@ jobs:
env:
__CARGO_TEST_CHANNEL_OVERRIDE_DO_NOT_USE_THIS: "nightly"
CARGO_HOST_LINKER: "clang-17"
CARGO_HOST_RUSTFLAGS: "-Clink-arg=-fuse-ld=lld-17"
CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUSTFLAGS: "-Clinker-plugin-lto -Clinker=clang-17 -Clink-arg=-fuse-ld=lld-17 -Clink-arg=--target=x86_64-unknown-linux-gnu"
CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_RUSTFLAGS: "-Clinker-plugin-lto -Clinker=clang-17 -Clink-arg=-fuse-ld=lld-17 -Clink-arg=--target=aarch64-unknown-linux-gnu"
CARGO_TARGET_ARMV7_UNKNOWN_LINUX_GNUEABIHF_RUSTFLAGS: "-Clinker-plugin-lto -Clinker=clang-17 -Clink-arg=-fuse-ld=lld-17 -Clink-arg=--target=armv7-unknown-linux-gnueabihf"
CARGO_HOST_RUSTFLAGS: "-Clink-arg=-fuse-ld=mold"
CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUSTFLAGS: "-Clinker-plugin-lto -Clinker=clang-17 -Clink-arg=-fuse-ld=mold -Clink-arg=--target=x86_64-unknown-linux-gnu"
CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_RUSTFLAGS: "-Clinker-plugin-lto -Clinker=clang-17 -Clink-arg=-fuse-ld=mold -Clink-arg=--target=aarch64-unknown-linux-gnu"
CARGO_TARGET_ARMV7_UNKNOWN_LINUX_GNUEABIHF_RUSTFLAGS: "-Clinker-plugin-lto -Clinker=clang-17 -Clink-arg=-fuse-ld=mold -Clink-arg=--target=armv7-unknown-linux-gnueabihf"
run: cargo -Ztarget-applies-to-host -Zhost-config build --verbose --release --target=${{ matrix.target }}
- uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit 0b892e5

Please sign in to comment.