[vtk-developers] python & tcl wrappers not working on Irix

Clinton Stimpson clinton at elemtech.com
Tue Jul 19 14:34:24 EDT 2005


So recently the python & tcl wrappers stopped working for iris.elemtech.

If I change Common/CMakeLists.txt

  IF(VTK_TYPE_CHAR_IS_SIGNED)
    SET(VTK_TYPE_NATIVE_Int8 Char)
  ELSE(VTK_TYPE_CHAR_IS_SIGNED)
    SET(VTK_TYPE_NATIVE_Int8 SignedChar)
  ENDIF(VTK_TYPE_CHAR_IS_SIGNED)


To

  IF(VTK_TYPE_CHAR_IS_SIGNED)
    SET(VTK_TYPE_NATIVE_Int8 Char)
  ELSE(VTK_TYPE_CHAR_IS_SIGNED)
    SET(VTK_TYPE_NATIVE_Int8 Char)
  ENDIF(VTK_TYPE_CHAR_IS_SIGNED)

Then it'll build and link correctly.  However, that's not the right 
fix.  Any idea how to fix the wrapper generators to do this signed char 
thing correctly?

Thanks,
Clint





More information about the vtk-developers mailing list