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