diff --git a/packages/rust/1.65.0/build.sh b/packages/rust/1.65.0/build.sh new file mode 100755 index 0000000..877d5b1 --- /dev/null +++ b/packages/rust/1.65.0/build.sh @@ -0,0 +1,5 @@ +#!/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 diff --git a/packages/rust/1.65.0/compile b/packages/rust/1.65.0/compile new file mode 100755 index 0000000..201318a --- /dev/null +++ b/packages/rust/1.65.0/compile @@ -0,0 +1,6 @@ +#!/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 diff --git a/packages/rust/1.65.0/environment b/packages/rust/1.65.0/environment new file mode 100755 index 0000000..5690f1d --- /dev/null +++ b/packages/rust/1.65.0/environment @@ -0,0 +1,5 @@ +#!/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 diff --git a/packages/rust/1.65.0/metadata.json b/packages/rust/1.65.0/metadata.json new file mode 100644 index 0000000..b315bdf --- /dev/null +++ b/packages/rust/1.65.0/metadata.json @@ -0,0 +1,7 @@ +{ + "language": "rust", + "version": "1.65.0", + "aliases": [ + "rs" + ] +} diff --git a/packages/rust/1.65.0/run b/packages/rust/1.65.0/run new file mode 100755 index 0000000..d377dd9 --- /dev/null +++ b/packages/rust/1.65.0/run @@ -0,0 +1,4 @@ +#!/usr/bin/env bash + +shift +./binary "$@" diff --git a/packages/rust/1.65.0/test.rs b/packages/rust/1.65.0/test.rs new file mode 100644 index 0000000..62c01c6 --- /dev/null +++ b/packages/rust/1.65.0/test.rs @@ -0,0 +1,8 @@ +fn main() { + println!("OK"); + + // 1.65.0 feature + let _test = if let Some(t) = Some(1234) { + t + } else { unreachable!() }; +}