Problem while building the sage locally in wsl (Ubuntu)

asked 0 years ago

updated 0 years ago

FrédéricC gravatar image

I am facing a lot of problem while building the sage locally in wsl as after the make -j16 command it goes for near about 2-3 hours executing the command and sometimes it got completed but shows error due to this I am not able to build the sage and can't be able to review my changes so that i can make PR after solving the issues in it... Please give the solution, I have visited completely through the Readme.md file and many more files for building purpose. Please tell me the solution asap..

Preview: (hide)

Comments

Running make -j16 is not enough to get full parallelization. One should also change MAKE variable to have patallelization in subprocesses - like:

MAKE="make -j16"; make -j16
Max Alekseyev gravatar imageMax Alekseyev ( 0 years ago )