<div dir="ltr"> <div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span>
> In calls to cpack only one core is used if Makefiles are used. Is there any option to enable multicore?<br></span></blockquote><div><br>It depends on what your trying to achieve.  Typically the bottleneck for CPack is in the compression step of the resulting tar (or rpm, etc.).  In that case, CMake is limited by the libarchive, libz, libbz2, liblzma, etc. implementations it's linked to, which are typically single threaded.  It's really no different than taking an install tree and running "tar -czf foo.tgz /path/t/foo-prefix".  So in that sense, even if you can parallelizes the "temporary" install step where it collects the files to packages, actually generating and compressing the package, which is the costly part, will likely remain a single process.<br><br><br></div></div><br></div></div>