Commit c254acc
authored
When running `compile.py` (after `configure.py`) with the `--verbose`
flag, the resulting cmake command is `cmake --build build <my_build_dir>
-- deply-sycl-toolchain --verbose` which results in an error like this
`/usr/bin/gmake: unrecognized option '--verbose'` when using Unix
Makefiles as generator. To support both makefiles and ninja, a better
and easier approach is to just place `--verbose` before the `--` in the
final command.
1 parent 80da6b6 commit c254acc
1 file changed
+6
-3
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
31 | 31 | | |
32 | 32 | | |
33 | 33 | | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
34 | 40 | | |
35 | 41 | | |
36 | 42 | | |
37 | 43 | | |
38 | 44 | | |
39 | 45 | | |
40 | | - | |
41 | | - | |
42 | | - | |
43 | 46 | | |
44 | 47 | | |
45 | 48 | | |
| |||
0 commit comments