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

4 lines
135 B
Bash
Executable File

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