mirror of
https://github.com/danog/gllvm.git
synced 2024-12-02 14:27:48 +01:00
4 lines
135 B
Bash
4 lines
135 B
Bash
|
#to avoid random missing files errors when building with clang
|
||
|
while [ ! -e "vmlinux" ]; do
|
||
|
make vmlinux CC=clang HOSTCC=clang
|
||
|
done
|