
* stable ci
* fixer
* aa
* no -z flag
* doc
* ??
* this one needs
* nightly for some of them ..
* turn off fail fast for now 🥱
* aaa
* afasdfasfas
* mm
* tmate
* linker's fault
* fixer
* f
* dfsafdasfasf
31 lines
580 B
Makefile
31 lines
580 B
Makefile
import "../../../just/libafl-qemu.just"
|
|
import "../fuzzer_name.just"
|
|
|
|
[unix]
|
|
compile_runner:
|
|
#!/bin/sh
|
|
. {{ DOTENV }}
|
|
cargo \
|
|
build \
|
|
--package runner \
|
|
--target x86_64-unknown-linux-gnu \
|
|
--profile {{ PROFILE }} \
|
|
--target-dir {{ TARGET_DIR }} \
|
|
--features {{ ARCH }}
|
|
|
|
[unix]
|
|
fix_runner:
|
|
#!/bin/sh
|
|
. {{ DOTENV }}
|
|
cargo \
|
|
fix \
|
|
--package runner \
|
|
--target x86_64-unknown-linux-gnu \
|
|
--profile {{ PROFILE }} \
|
|
--target-dir {{ TARGET_DIR }} \
|
|
--features {{ ARCH }} \
|
|
--allow-dirty
|
|
|
|
[unix]
|
|
build_runner: compile_runner
|