Commit d7e4394
authored
Fix parallel builds (sysprog21#423)
When adding the -j flag to make for faster compilation speeds, it led
to the following error:
src/riscv.h:20:10: fatal error: softfloat/softfloat.h: No such file or directory
20 | #include "softfloat/softfloat.h"
| ^~~~~~~~~~~~~~~~~~~~~~~
compilation terminated.
This was due to incorrect dependency settings, where compilation of the
source code started before completing the git submodule update, leading
to the error. Add appropriate dependency handling to ensure that
compilation of the softfloat library is completed before compiling the
source code.1 parent 4f16a67 commit d7e4394
1 file changed
+4
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
175 | 175 | | |
176 | 176 | | |
177 | 177 | | |
| 178 | + | |
| 179 | + | |
| 180 | + | |
| 181 | + | |
178 | 182 | | |
179 | 183 | | |
180 | 184 | | |
| |||
0 commit comments