Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rust: bump to 1.79.0 #1012

Merged
merged 1 commit into from
Jun 14, 2024
Merged
Show file tree
Hide file tree
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
7 changes: 1 addition & 6 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -82,12 +82,7 @@ local.properties
/.gradle
*.apk
*.ipa
/rustc-1.75.0-src
/rustc-1.76.0-src
/rustc-1.77.0-src
/rustc-1.77.1-src
/rustc-1.77.2-src
/rustc-1.78.0-src
/rustc-*-src
/third_party/rust-ohos
/i386-alpine320-sysroot
/amd64-alpine320-sysroot
6 changes: 3 additions & 3 deletions scripts/build-rust.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ cd $PWD/..

DEFAULT_TARGET=$(rustc -vV | sed -n 's|host: ||p')

RUST_VER=1.78.0
CARGO_VER=0.79.0
RUST_VER=1.79.0
CARGO_VER=0.80.0

# https://github.com/Homebrew/homebrew-core/blob/master/Formula/r/rust.rb
curl -L -O -C - https://static.rust-lang.org/dist/rustc-$RUST_VER-src.tar.xz
Expand All @@ -24,7 +24,7 @@ cat > rustc-$RUST_VER-src/config.toml.in << EOF

profile = "compiler"
# latest change id in src/bootstrap/src/utils/change_tracker.rs
change-id = 121754
change-id = 123711

[build]
# see https://github.com/llvm/llvm-project/issues/60115
Expand Down
4 changes: 2 additions & 2 deletions scripts/setup-android-rust.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ fi

echo "Adding rustup toolchain..."

rustup toolchain install 1.78.0
rustup default 1.78.0
rustup toolchain install 1.79.0
rustup default 1.79.0

echo "Adding rustup toolchain...done"

Expand Down
4 changes: 2 additions & 2 deletions scripts/setup-ios-rust.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ fi

echo "Adding rustup toolchain..."

rustup toolchain install 1.78.0
rustup default 1.78.0
rustup toolchain install 1.79.0
rustup default 1.79.0

echo "Adding rustup toolchain...done"

Expand Down
Loading