mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-30 15:21:12 +00:00
8 lines
159 B
Bash
Executable file
8 lines
159 B
Bash
Executable file
#!/bin/bash
|
|
|
|
clang -c host/src/host.c -o c_host.o
|
|
rustc host/src/host.rs -o rust_host.o
|
|
ld -r c_host.o rust_host.o -o host.o
|
|
|
|
rm -f c_host.o
|
|
rm -f rust_host.o
|