82feefbaee
From release 0.1.0 pre-patched archive. This includes all Red Bear modifications previously maintained as patches in local/patches/kernel/.
8 lines
167 B
Bash
Executable File
8 lines
167 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
export RUST_TARGET_PATH="${PWD}/targets"
|
|
export RUSTFLAGS="-C debuginfo=2"
|
|
cargo clippy --lib --release --target x86_64-unknown-none "$@"
|