Can anybody please assist with this issue.
On Saturday, March 8, 2025 at 9:50:10 AM UTC+5:30 Ashutosh Rajora wrote:
> how to check this:
>
> " It looks indeed as an insufficient RAM for the C++ compiler.
> Do you have a fixed amount of RAM allocated to WSL? It should better be
> 4Gb or more."
>
perhaps you are running too many complications in parallel, and that's why one
of them errors out. As scipy uses ninja, check out ninja documentation on how
to limit the number - that's a parameter to add to ninja call.
This might need a small patch to scipy,
or using another version of scipy...
Thanks a lot sir,
Previously I tried re-running "make" but it had failed,
so this time particularly mentioned it to run no parallel jobs while
building SciPy, ensured this by running :
make SAGE_NUM_THREADS=1 MAKE="make -j1" scipy
make SAGE_NUM_THREADS=2 MAKE="make -j2"
and the BUILD was SUCC