Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions rust-1.90.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package:
name: rust-1.90
version: "1.90.0"
epoch: 0
epoch: 1
description: "Empowering everyone to build reliable and efficient software."
copyright:
- license: Apache-2.0 AND MIT
Expand All @@ -10,7 +10,7 @@ package:
memory: 16Gi
dependencies:
runtime:
- libLLVM-20
- libLLVM-21
provides:
- rust=${{package.full-version}}

Expand All @@ -20,16 +20,16 @@ environment:
- build-base
- busybox
- ca-certificates-bundle
- clang-20
- clang-21
- cmake
- coreutils
- curl-dev
- file
- libLLVM-20
- libLLVM-21
- libssh2-dev
- libxml2-dev
- llvm-20
- llvm-20-dev
- llvm-21
- llvm-21-dev
- openssl-dev
- patch
- python3
Expand Down Expand Up @@ -57,8 +57,8 @@ pipeline:
TOOLCHAIN_BIN_DIR="$(dirname "$(rustup which cargo)")"
export PATH="$TOOLCHAIN_BIN_DIR:$PATH"

export CFLAGS="$CFLAGS -O2 -I/usr/lib/llvm-20/include"
export CXXFLAGS="$CXXFLAGS -O2 -I/usr/lib/llvm-20/include"
export CFLAGS="$CFLAGS -O2 -I/usr/lib/llvm-21/include"
export CXXFLAGS="$CXXFLAGS -O2 -I/usr/lib/llvm-21/include"
export OPENSSL_NO_VENDOR=1
export RUST_BACKTRACE=1
export ARCH=${{host.triplet.rust}}
Expand All @@ -78,8 +78,8 @@ pipeline:
--release-channel="stable" \
--enable-local-rust \
--local-rust-root="/usr" \
--llvm-root="/usr/lib/llvm-20" \
--llvm-config="/usr/lib/llvm-20/bin/llvm-config" \
--llvm-root="/usr/lib/llvm-21" \
--llvm-config="/usr/lib/llvm-21/bin/llvm-config" \
--disable-docs \
--enable-extended \
--tools="cargo,src,clippy,rustfmt,rustdoc" \
Expand Down Expand Up @@ -113,8 +113,8 @@ pipeline:
unset CARGO_PROFILE_RELEASE_OPT_LEVEL
unset CARGO_PROFILE_RELEASE_PANIC
unset CARGO_PROFILE_RELEASE_CODEGEN_UNITS
export CFLAGS="$CFLAGS -O2 -I/usr/lib/llvm-20/include/"
export CXXFLAGS="$CXXFLAGS -O2 -I/usr/lib/llvm-20/include/"
export CFLAGS="$CFLAGS -O2 -I/usr/lib/llvm-21/include/"
export CXXFLAGS="$CXXFLAGS -O2 -I/usr/lib/llvm-21/include/"
export OPENSSL_NO_VENDOR=1
export RUSTC_BOOTSTRAP=1
export RUST_BACKTRACE=full
Expand Down
Loading