mirror of
https://github.com/logos-blockchain/lssa-zkvm-testing.git
synced 2026-01-02 13:23:08 +00:00
7 lines
252 B
Bash
Executable File
7 lines
252 B
Bash
Executable File
#!/usr/bin/env bash
|
|
TEST_NAME=$1
|
|
|
|
rustc --emit=llvm-ir -Cpanic="abort" -C opt-level=3 -C target-cpu=generic ../tests/$TEST_NAME.rs
|
|
./llc -march=delendum -filetype=obj $TEST_NAME.ll
|
|
./ld.lld --script=./valida.ld $TEST_NAME.o -L . -lstdio -o $TEST_NAME
|