Compare commits

..

No commits in common. "0257676d18e64684c6e5e285e72474dec14a88d7" and "f2da04ad8b7830cafe867f6a08f2b6abac54a1d5" have entirely different histories.

6 changed files with 0 additions and 34 deletions

View file

@ -1,5 +0,0 @@
#!/usr/bin/env bash
curl -OL "https://static.rust-lang.org/dist/rust-1.63.0-x86_64-unknown-linux-gnu.tar.gz"
tar xzvf rust-1.63.0-x86_64-unknown-linux-gnu.tar.gz
rm rust-1.63.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.63.0-x86_64-unknown-linux-gnu/rustc/bin/:$PATH
export RUST_INSTALL_LOC=$PWD/rust-1.63.0-x86_64-unknown-linux-gnu

View file

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

View file

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

View file

@ -1,7 +0,0 @@
fn main() {
println!("OK");
// 1.63.0 features
use std::sync::Mutex;
const _M: Mutex<()> = Mutex::new(());
}