Compare commits
No commits in common. "1eddc8dcf7a55a15ed28338eea630c3a2a23fa5c" and "c091c117c7c1a5165c137e3d367adc8eea2662f4" have entirely different histories.
1eddc8dcf7
...
c091c117c7
|
@ -1,5 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
curl -OL "https://static.rust-lang.org/dist/rust-1.56.1-x86_64-unknown-linux-gnu.tar.gz"
|
|
||||||
tar xzvf rust-1.56.1-x86_64-unknown-linux-gnu.tar.gz
|
|
||||||
rm rust-1.56.1-x86_64-unknown-linux-gnu.tar.gz
|
|
|
@ -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
|
|
|
@ -1,5 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
# Put 'export' statements here for environment variables
|
|
||||||
export PATH=$PWD/rust-1.56.1-x86_64-unknown-linux-gnu/rustc/bin/:$PATH
|
|
||||||
export RUST_INSTALL_LOC=$PWD/rust-1.56.1-x86_64-unknown-linux-gnu
|
|
|
@ -1,7 +0,0 @@
|
||||||
{
|
|
||||||
"language": "rust",
|
|
||||||
"version": "1.56.1",
|
|
||||||
"aliases": [
|
|
||||||
"rs"
|
|
||||||
]
|
|
||||||
}
|
|
|
@ -1,4 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
shift
|
|
||||||
./binary "$@"
|
|
|
@ -1,3 +0,0 @@
|
||||||
fn main() {
|
|
||||||
println!("OK");
|
|
||||||
}
|
|
Loading…
Reference in New Issue