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
When building PyIlmBase with more than one jobs, i.e. make -jN for N>1 it can fail in linking imathmodule, due to PyImath isn't linked yet. The Makefile.am currently using -lPyImath instead of libPyImath.la in its imathmodule_la_LIBADD line in contrast how the other modules do it.
The patch at https://github.com/gentoo/gentoo/blob/master/dev-python/pyilmbase/files/pyilmbase-2.3.0-link-pyimath.patch should solve this issue and works on gentoo.
Also, the install target can fail if called with more than one job.
The text was updated successfully, but these errors were encountered:
When building PyIlmBase with more than one jobs, i.e.
make -jN
for N>1 it can fail in linking imathmodule, due to PyImath isn't linked yet. TheMakefile.am
currently using-lPyImath
instead oflibPyImath.la
in itsimathmodule_la_LIBADD
line in contrast how the other modules do it.The patch at https://github.com/gentoo/gentoo/blob/master/dev-python/pyilmbase/files/pyilmbase-2.3.0-link-pyimath.patch should solve this issue and works on gentoo.
Also, the install target can fail if called with more than one job.
The text was updated successfully, but these errors were encountered: