roc/examples/multi-module/platform/build.sh
2020-10-12 22:24:05 +02:00

12 lines
221 B
Bash
Executable file

#!/bin/bash
# compile c_host.o and rust_host.o
clang -c host.c -o c_host.o
rustc host.rs -o rust_host.o
# link them together into host.o
ld -r c_host.o rust_host.o -o host.o
# clean up
rm -f c_host.o
rm -f rust_host.o