Problem while building the sage locally in wsl (Ubuntu)

asked 2024-12-30 19:06:06 +0100

updated 2024-12-31 08:37:30 +0100

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..

edit retag flag offensive close merge delete

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 ( 2024-12-31 09:23:51 +0100 )edit