6 lines
101 B
Bash
Executable File
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
|