first-rust/build
2024-11-22 17:12:05 -06:00

6 lines
101 B
Bash
Executable File

#!/usr/bin/env bash
cc -c src/test.c
cc -shared test.o -o libtest.so
rustc -l test -L . src/main.rs