gllvm/examples/linux-kernel/make-script.sh
2018-05-23 16:47:37 -07:00

4 lines
126 B
Bash
Executable File

#to avoid random missing files errors when building
while [ ! -e "vmlinux" ]; do
make vmlinux CC=gclang HOSTCC=gclang
done