Hi,
Is there a way to parallelize the just in time compilation while using python interface?
I know how to compile in parallel c++ code by command:
make -j 4
Thanks in advance!
Regards, Maksim
No, but it should be simple to implement. Look for the file build.py in Instant and search for the make command. Here you may add "make-flags" as an option and add it to the string used to run make. OK?
Thanks for answer!
I thought the same.
I found build.py in Instant module and add "-j 4" to the make command, but nothing changes.
# cmd = "make VERBOSE=1" cmd = "make -j 4 VERBOSE=1"