Running make -j so that PartMC is built in parallel decreases compilation times, but is currently unavailable. Errors like
f951: Fatal Error: Cannot rename module file ‘pmc_util.mod0’ to ‘pmc_util.mod’: No such file or directory
compilation terminated.
imply that a module that depends on pmc_util.mod is being built before pmc_util.mod has been compiled. Several errors like this (but with different specific filenames) suggest that CMake is having a hard time resolving dependencies between different PartMC modules.
Serial builds (with just make) work fine.
Running
make -jso that PartMC is built in parallel decreases compilation times, but is currently unavailable. Errors likeimply that a module that depends on
pmc_util.modis being built beforepmc_util.modhas been compiled. Several errors like this (but with different specific filenames) suggest that CMake is having a hard time resolving dependencies between different PartMC modules.Serial builds (with just
make) work fine.