Open GoogleCodeExporter opened 9 years ago
So it sounds like alembic needs to do an import imath internally (or wrapped in
an __init__.py before loading the .so)
Original comment by miller.lucas
on 4 Mar 2014 at 7:15
Original comment by miller.lucas
on 4 Mar 2014 at 7:16
I was able to get this to work by changing the link order when building
PyAlembic. Modify CMakeLists.txt in PyAlembic to be this order:
LINK_LIBRARIES( ${CORE_LIBS}
${ALEMBIC_HDF5_LIBS}
${ALEMBIC_PYILMBASE_PYIMATH_LIB}
${PLIBS}
${ZLIB_LIBRARIES}
${EXTERNAL_MATH_LIBS}
${ALEMBIC_ILMBASE_LIBS})
Original comment by rjmerc...@gmail.com
on 12 Mar 2014 at 2:55
What are people at other sites doing differently such that this works out of
the box?
Original comment by aj.d...@gmail.com
on 14 May 2014 at 11:25
They are importing imath first.
In all of the examples and tests included in Alembic, import imath happens
before import alembic.
Original comment by miller.lucas
on 14 May 2014 at 4:47
Original issue reported on code.google.com by
aj.d...@gmail.com
on 4 Mar 2014 at 11:50