Hello,<br><br>I'm starting clang 2.9 to compile C code generated by vala.<br>On Windows.<br>So far, everything works fine, the compilation is fast, I love the enhanced error messages.<br>Well I don't miss gcc one bit.<br>
<br>Anyway, I have a question about clang and the use of the multicore processor.<br>Is there a way (ie a command line) to take full advantage our multicore processors ?<br><br>I know that there is no way to do so with just gcc (we are supposed to give the number of jobs to make : <span class="st"><em>make</em> -j 3</span> ).<br>
<br>The trouble is if your build system doesn't use make, your toasted (or you have to decompose your compilation into tasks).<br>So is there any magic "-j" command line to clang ?<br>(Or any another workaround not involving make)<br>
<br>Cheers,<br>Carl.<br><br>PS : I know about the whole Unix philosophy, "do a simple task and do it well"<br>