[vtk-developers] python & tcl wrappers not working on Irix
Brad King
brad.king at kitware.com
Wed Jul 20 10:00:06 EDT 2005
Clinton Stimpson wrote:
>
> 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?
I'm fixing this now. The problem is that "signed char" is not supported
by the wrappers, so I'm adding it.
-Brad
More information about the vtk-developers
mailing list