Split out Rust BPF no-std stuff (#4968)

This commit is contained in:
Jack May
2019-07-08 20:28:05 -08:00
committed by GitHub
parent 49250f62aa
commit f9a2254688
35 changed files with 164 additions and 217 deletions

View File

@@ -12,6 +12,7 @@ usage() {
echo " Supported actions:"
echo " build"
echo " clean"
echo " test"
echo " clippy"
echo " fmt"
echo ""
@@ -26,6 +27,13 @@ perform_action() {
clean)
./../../../sdk/bpf/rust/clean.sh "$2"
;;
test)
(
cd "$2"
echo "test $2"
cargo +nightly test
)
;;
clippy)
(
cd "$2"