Compare commits

..

No commits in common. "d815a4f1ac2f8d123a8ebb549a447abf13ebf272" and "961435b8ccbc2415cd2ce943abd2084374399534" have entirely different histories.

6 changed files with 0 additions and 35 deletions

View File

@ -1,5 +0,0 @@
#!/usr/bin/env bash
curl -OL "https://static.rust-lang.org/dist/rust-1.65.0-x86_64-unknown-linux-gnu.tar.gz"
tar xzvf rust-1.65.0-x86_64-unknown-linux-gnu.tar.gz
rm rust-1.65.0-x86_64-unknown-linux-gnu.tar.gz

View File

@ -1,6 +0,0 @@
#!/usr/bin/env bash
# https://stackoverflow.com/questions/38041331/rust-compiler-cant-find-crate-for-std
# Rust compiler needs to find the stdlib to link against
rustc -o binary -L ${RUST_INSTALL_LOC}/rustc/lib -L ${RUST_INSTALL_LOC}/rust-std-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib "$@"
chmod +x binary

View File

@ -1,5 +0,0 @@
#!/usr/bin/env bash
# Put 'export' statements here for environment variables
export PATH=$PWD/rust-1.65.0-x86_64-unknown-linux-gnu/rustc/bin/:$PATH
export RUST_INSTALL_LOC=$PWD/rust-1.65.0-x86_64-unknown-linux-gnu

View File

@ -1,7 +0,0 @@
{
"language": "rust",
"version": "1.65.0",
"aliases": [
"rs"
]
}

View File

@ -1,4 +0,0 @@
#!/usr/bin/env bash
shift
./binary "$@"

View File

@ -1,8 +0,0 @@
fn main() {
println!("OK");
// 1.65.0 feature
let _test = if let Some(t) = Some(1234) {
t
} else { unreachable!() };
}