You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is of course a typo. It is meant to be cd leon; make or even better cd leon && ./configure && $(MAKE). It is important that ./configure is invoked before make, as the Makefile must be generated.
While make -j1 would have Makefile ready (made in another target), it need not be the case for make -j10 or something like this.
This is of course a typo. It is meant to be
cd leon; make
or even bettercd leon && ./configure && $(MAKE)
. It is important that./configure
is invoked beforemake
, as the Makefile must be generated.While
make -j1
would have Makefile ready (made in another target), it need not be the case formake -j10
or something like this.See more here: https://trac.sagemath.org/ticket/22116
The text was updated successfully, but these errors were encountered: