mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 14:24:45 +00:00
12 lines
221 B
Bash
Executable file
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
|