gllvm/examples/linux-kernel/make-script-clang.sh

4 lines
135 B
Bash
Raw Normal View History

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