diff options
| author | emmett1 <emmett1.2miligrams@protonmail.com> | 2024-12-01 21:56:37 +0800 |
|---|---|---|
| committer | emmett1 <emmett1.2miligrams@protonmail.com> | 2024-12-01 21:56:37 +0800 |
| commit | d2efe0c452d1d7a02739d0f75dc2a46b8fbf5abd (patch) | |
| tree | 6f43325d52f6eb905dcf149aaecff19b693fbd77 /repos/extra/rust/abuild | |
| parent | e87a099bbe3634d829395c389f7a514b2f5fc6fe (diff) | |
| download | alicelinux-d2efe0c452d1d7a02739d0f75dc2a46b8fbf5abd.tar.gz alicelinux-d2efe0c452d1d7a02739d0f75dc2a46b8fbf5abd.zip | |
rust: updated to 1.82.0
Diffstat (limited to 'repos/extra/rust/abuild')
| -rwxr-xr-x[-rw-r--r--] | repos/extra/rust/abuild | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/repos/extra/rust/abuild b/repos/extra/rust/abuild index c6e33b76..3b463b3d 100644..100755 --- a/repos/extra/rust/abuild +++ b/repos/extra/rust/abuild @@ -1,9 +1,9 @@ name=rust -version=1.81.0 +version=1.82.0 ##cat src/stage0.txt -export _date=2024-08-08 -export _rustc=1.80.1 +export _date=2024-09-05 +export _rustc=1.81.0 export _cargo=$_rustc ## @@ -48,9 +48,6 @@ tools = [ "cargo", "rustfmt" ] sanitizers = false profiler = false full-bootstrap = false -@CARGO@ -@RUST@ -@RUSTFMT@ [install] prefix = "/usr" @@ -77,15 +74,6 @@ jemalloc = false rpath = false dist-src = false EOF - - if [ -e /usr/bin/rustc ]; then - sed -e 's|@CARGO@|cargo = "/usr/bin/cargo"|' \ - -e 's|@RUST@|rustc = "/usr/bin/rustc"|' \ - -e 's|@RUSTFMT@|rustfmt = "/usr/bin/rustfmt"|' \ - -i config.toml - else - sed -e 's|@CARGO@||' -e 's|@RUST@||' -e 's|@RUSTFMT@||' -i config.toml - fi mkdir "$SRC/rust" export RUST_BACKTRACE=1 |