[vtkusers] installing vtk cvs version. tcl works, cpp does not!
Brian Lading
brian at maths.lth.se
Tue Oct 12 07:44:25 EDT 2004
Hello there!
I have just installed the cvs version of VTK (a few days old).
Everything compiles and 'makes' ok. But when I do a testing of the
examples, eg Medical1.xxx I have no problems with the tcl and the python
scripts BUT the cpp programs all crashes with a segmentation fault!
The cpp programs compiles and links, and it is possible to instantiate
objects, but its NOT possible to use the objects!, eg for Medical1.cxx:
vtkRenderer *aRenderer = vtkRenderer::New();
vtkRenderWindow *renWin = vtkRenderWindow::New();
renWin->AddRenderer(aRenderer);
vtkRenderWindowInteractor *iren = vtkRenderWindowInteractor::New();
iren->SetRenderWindow(renWin);
vtkVolume16Reader *v16 = vtkVolume16Reader::New();
/* until this point everything is ok! */
v16->SetDataDimensions (64,64);
--- > Segmentation fault
What Da f... is wrong?
Have A Beautiful One
Brian
-----------------------------------------------------------------------
-----------------------------------------------------------------------
My system:
DISTRO: DEBIAN unstable distro installed a few month ago.
COMPILER: g++ (GCC) 3.3.4 (Debian 1:3.3.4-13)
GNU Octave, version 2.1.60 (i386-pc-linux-gnu).
-----------------------------------------------------------------------
AND just to make an impressive long 'first timer in a forum'-mail, heres
my CMakeCache.txt:
-----------------------------------------------------------------------
-----------------------------------------------------------------------
-----------------------------------------------------------------------
//Build the documentation (Doxygen).
BUILD_DOCUMENTATION:BOOL=OFF
//Build VTK examples.
BUILD_EXAMPLES:BOOL=ON
//Build VTK with shared libraries.
BUILD_SHARED_LIBS:BOOL=ON
//Build the testing tree.
BUILD_TESTING:BOOL=ON
//Path to a program.
CMAKE_AR:FILEPATH=/usr/bin/ar
//For backwards compatibility, what version of CMake commands and
// syntax should this version of CMake allow.
CMAKE_BACKWARDS_COMPATIBILITY:STRING=2.0
//Choose the type of build, options are: None(CMAKE_CXX_FLAGS or
// CMAKE_C_FLAGS used) Debug Release RelWithDebInfo MinSizeRel.
//
CMAKE_BUILD_TYPE:STRING=
//C++ compiler
CMAKE_CXX_COMPILER:STRING=g++
//Flags used by the compiler during all build types.
CMAKE_CXX_FLAGS:STRING=
//Flags used by the compiler during debug builds.
CMAKE_CXX_FLAGS_DEBUG:STRING=-g
//Flags used by the compiler during release minsize builds.
CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os
//Flags used by the compiler during release builds (/MD /Ob1 /Oi
// /Ot /Oy /Gs will produce slightly less optimized but smaller
// files).
CMAKE_CXX_FLAGS_RELEASE:STRING=-O3
//Flags used by the compiler during Release with Debug Info builds.
//
CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g
//C compiler
CMAKE_C_COMPILER:STRING=gcc
//Flags for C compiler.
CMAKE_C_FLAGS:STRING=
//Flags used by the compiler during debug builds.
CMAKE_C_FLAGS_DEBUG:STRING=-g
//Flags used by the compiler during release minsize builds.
CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os
//Flags used by the compiler during release builds (/MD /Ob1 /Oi
// /Ot /Oy /Gs will produce slightly less optimized but smaller
// files).
CMAKE_C_FLAGS_RELEASE:STRING=-O3
//Flags used by the compiler during Release with Debug Info builds.
//
CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g
//Flags used by the linker.
CMAKE_EXE_LINKER_FLAGS:STRING=
//Flags used by the linker during debug builds.
CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the linker during release minsize builds.
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the linker during release builds.
CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during Release with Debug Info builds.
//
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//Use HP pthreads.
CMAKE_HP_PTHREADS:BOOL=OFF
//Install path prefix, prepended onto install directories.
CMAKE_INSTALL_PREFIX:PATH=/usr/local
//Path to a program.
CMAKE_MAKE_PROGRAM:FILEPATH=/usr/bin/make
//Flags used by the linker during the creation of modules.
CMAKE_MODULE_LINKER_FLAGS:STRING=
//Flags used by the linker during debug builds.
CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the linker during release minsize builds.
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the linker during release builds.
CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during Release with Debug Info builds.
//
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//Path to a program.
CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib
//Flags used by the linker during the creation of dll's.
CMAKE_SHARED_LINKER_FLAGS:STRING=
//Flags used by the linker during debug builds.
CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the linker during release minsize builds.
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the linker during release builds.
CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during Release with Debug Info builds.
//
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//If set, runtime paths are not added when using shared libraries.
//
CMAKE_SKIP_RPATH:BOOL=OFF
//Thread library used.
CMAKE_THREAD_LIBS:STRING=-lpthread
//Use the pthreads library.
CMAKE_USE_PTHREADS:BOOL=ON
//If true, cmake will use relative paths in makefiles and projects.
//
CMAKE_USE_RELATIVE_PATHS:BOOL=OFF
//Use sproc libs.
CMAKE_USE_SPROC:BOOL=OFF
//Use the win32 thread library.
CMAKE_USE_WIN32_THREADS:BOOL=OFF
//If this value is on, makefiles will be generated without the
// .SILENT directive, and all commands will be echoed to the console
// during the make. This is useful for debugging only. With Visual
// Studio IDE projects all commands are done without /nologo.
CMAKE_VERBOSE_MAKEFILE:BOOL=OFF
//X11 extra flags.
CMAKE_X_CFLAGS:STRING=-I/usr/X11R6/include
//Libraries and options used in X11 programs.
CMAKE_X_LIBS:STRING=-lSM;-lICE;-lSM;-lICE;/usr/X11R6/lib/libX11.so;/usr/X11R6/lib/libXext.so;/usr/X11R6/lib/libX11.so;/usr/X11R6/lib/libXext.so
//Path to program used to compress files for transfer to the dart
// server
COMPRESSIONCOMMAND:FILEPATH=/bin/gzip
//Path to the coverage program that Dart client uses for performing
// coverage inspection
COVERAGE_COMMAND:FILEPATH=/usr/bin/gcov
//Path to a program.
CVSCOMMAND:FILEPATH=/usr/bin/cvs
//Options passed to the cvs update command.
CVS_UPDATE_OPTIONS:STRING=-d -A -P
//Limit of reported errors, -1 reports all.
DART_BUILD_ERROR_REPORT_LIMIT:BOOL=OFF
//Limit of reported warnings, -1 reports all.
DART_BUILD_WARNING_REPORT_LIMIT:BOOL=OFF
//If you have Dart installed, where is it located?
DART_ROOT:PATH=DART_ROOT-NOTFOUND
//Time alloted for a test before Dart will kill the test.
DART_TESTING_TIMEOUT:STRING=1500
//Show the actual output of the build, or if off show a . for each
// 1024 bytes.
DART_VERBOSE_BUILD:BOOL=OFF
//Should Dart server send email when build errors are found in
// Continuous builds?
DELIVER_CONTINUOUS_EMAIL:BOOL=OFF
//Value Computed by CMake
DICOMParser_BINARY_DIR:STATIC=/home/mig/installed/vtkCVS/VTK/Utilities/DICOMParser
//Value Computed by CMake
DICOMParser_SOURCE_DIR:STATIC=/home/mig/installed/vtkCVS/VTK/Utilities/DICOMParser
//Path to gunzip executable
GUNZIPCOMMAND:FILEPATH=/bin/gunzip
//Path to java command, used by the Dart server to create html.
//
JAVACOMMAND:FILEPATH=/usr/bin/java
//Command used to build entire project from the command line.
MAKECOMMAND:STRING=/usr/bin/make -i
//What is the path where the file GL/gl_mangle.h can be found
MANGLED_MESA_INCLUDE_DIR:PATH=MANGLED_MESA_INCLUDE_DIR-NOTFOUND
//Where can the MesaGL library be found
MANGLED_MESA_LIBRARY:FILEPATH=MANGLED_MESA_LIBRARY-NOTFOUND
//What is the path where the file GL/osmesa.h can be found
MANGLED_OSMESA_INCLUDE_DIR:PATH=MANGLED_OSMESA_INCLUDE_DIR-NOTFOUND
//Where can the OSMesa library be found
MANGLED_OSMESA_LIBRARY:FILEPATH=MANGLED_OSMESA_LIBRARY-NOTFOUND
//Path to Rational purify command, used for memory error detection.
//
MEMORYCHECK_COMMAND:FILEPATH=MEMORYCHECK_COMMAND-NOTFOUND
//File that contains suppressions for the memmory checker
MEMORYCHECK_SUPPRESSIONS_FILE:FILEPATH=
//If a second mpi library is necessary, specify it here.
MPI_EXTRA_LIBRARY:FILEPATH=/usr/lib/libmpi++.so
//What is the path where the file mpi.h can be found
MPI_INCLUDE_PATH:PATH=/usr/lib/mpich/include
//Where can one of the mpi or mpich libraries be found
MPI_LIBRARY:FILEPATH=/usr/lib/libmpi.so
//What is the path where the file GL/gl.h can be found
OPENGL_INCLUDE_DIR:PATH=/usr/include
//Where can one of the MesaGL or GL libraries be found
OPENGL_gl_LIBRARY:FILEPATH=/usr/lib/libGL.so
//Where can one of the MesaGLU or GLU libraries be found
OPENGL_glu_LIBRARY:FILEPATH=/usr/lib/libGLU.so
//What is the path where the file GL/xmesa.h can be found
OPENGL_xmesa_INCLUDE_DIR:PATH=OPENGL_xmesa_INCLUDE_DIR-NOTFOUND
//What is the path where the file GL/osmesa.h can be found
OSMESA_INCLUDE_DIR:PATH=/usr/include
//Where can the OSMesa library be found
OSMESA_LIBRARY:FILEPATH=/usr/X11R6/lib/libOSMesa.so
//Path to a program.
PYTHON_EXECUTABLE:FILEPATH=/usr/bin/python2.3
//What is the path where the file Python.h can be found
PYTHON_INCLUDE_PATH:PATH=/usr/include/python2.3
//Where can one of the python23, python2.3, python2.3.dll, python22,
// python2.2, python2.2.dll, python21, python2.1, python2.1.dll,
// python20, python2.0, python2.0.dll, python16, python1.6,
python1.6.dll,
// python15, python1.5 or python1.5.dll libraries be found
PYTHON_LIBRARY:FILEPATH=/usr/lib/python2.3/config/libpython2.3.so
//Utility library needed for vtkpython
PYTHON_UTIL_LIBRARY:FILEPATH=/usr/lib/libutil.so
//Path to scp command, used by some Dart clients for submitting
// results to a Dart server (when not using ftp for submissions)
//
SCPCOMMAND:FILEPATH=/usr/bin/scp
//Name of the computer/site where compile is being run
SITE:STRING=momo
//What is the path where the file tcl.h can be found
TCL_INCLUDE_PATH:PATH=/usr/include/tcl8.3
//Where can one of the tcl, tcl84, tcl8.4, tcl83, tcl8.3, tcl82,
// tcl8.2, tcl80 or tcl8.0 libraries be found
TCL_LIBRARY:FILEPATH=/usr/lib/libtcl8.3.so
//Path to a program.
TCL_TCLSH:FILEPATH=/usr/bin/tclsh
//Build with static Tcl/Tk support. TCL_LIBRARY and TK_LIBRARY
// must point to the corresponding Tcl/Tk static libraries (example,
// tcl84sx.lib, tk84sx.lib).
TCL_TK_STATIC:BOOL=OFF
//What is the path where the file tk.h can be found
TK_INCLUDE_PATH:PATH=/usr/include/tcl8.3
//Where can one of the tk, tk84, tk8.4, tk83, tk8.3, tk82, tk8.2,
// tk80 or tk8.0 libraries be found
TK_LIBRARY:FILEPATH=/usr/lib/libtk8.3.so
//Value Computed by CMake
VTKEXPAT_BINARY_DIR:STATIC=/home/mig/installed/vtkCVS/VTK/Utilities/vtkexpat
//Value Computed by CMake
VTKEXPAT_SOURCE_DIR:STATIC=/home/mig/installed/vtkCVS/VTK/Utilities/vtkexpat
//Value Computed by CMake
VTKFREETYPE_BINARY_DIR:STATIC=/home/mig/installed/vtkCVS/VTK/Utilities/freetype
//Value Computed by CMake
VTKFREETYPE_SOURCE_DIR:STATIC=/home/mig/installed/vtkCVS/VTK/Utilities/freetype
//Value Computed by CMake
VTKFTGL_BINARY_DIR:STATIC=/home/mig/installed/vtkCVS/VTK/Utilities/ftgl
//Value Computed by CMake
VTKFTGL_SOURCE_DIR:STATIC=/home/mig/installed/vtkCVS/VTK/Utilities/ftgl
//Value Computed by CMake
VTKJPEG_BINARY_DIR:STATIC=/home/mig/installed/vtkCVS/VTK/Utilities/vtkjpeg
//Value Computed by CMake
VTKJPEG_SOURCE_DIR:STATIC=/home/mig/installed/vtkCVS/VTK/Utilities/vtkjpeg
//Value Computed by CMake
VTKPNG_BINARY_DIR:STATIC=/home/mig/installed/vtkCVS/VTK/Utilities/vtkpng
//Value Computed by CMake
VTKPNG_SOURCE_DIR:STATIC=/home/mig/installed/vtkCVS/VTK/Utilities/vtkpng
//Value Computed by CMake
VTKTIFF_BINARY_DIR:STATIC=/home/mig/installed/vtkCVS/VTK/Utilities/vtktiff
//Value Computed by CMake
VTKTIFF_SOURCE_DIR:STATIC=/home/mig/installed/vtkCVS/VTK/Utilities/vtktiff
//Value Computed by CMake
VTKZLIB_BINARY_DIR:STATIC=/home/mig/installed/vtkCVS/VTK/Utilities/vtkzlib
//Value Computed by CMake
VTKZLIB_SOURCE_DIR:STATIC=/home/mig/installed/vtkCVS/VTK/Utilities/vtkzlib
//Value Computed by CMake
VTK_BINARY_DIR:STATIC=/home/mig/installed/vtkCVS/VTK
//What is the path where the file VTKData.readme can be found
VTK_DATA_ROOT:PATH=/home/mig/installed/VTK42/VTKData-release-4-2
//Build leak checking support into VTK.
VTK_DEBUG_LEAKS:BOOL=OFF
//Path to a program.
VTK_MPIRUN_EXE:FILEPATH=/usr/bin/mpirun
//Maximum number of processors available to run parallel applications.
// (see /home/mig/installed/vtkCVS/VTK/CMakeLists.txt for more
// info.)
VTK_MPI_MAX_NUMPROCS:STRING=1
//Flag used by mpi to specify the number of processes, the next
// option will be the number of processes. (see
/home/mig/installed/vtkCVS/VTK/CMakeLists.txt
// for more info.)
VTK_MPI_NUMPROC_FLAG:STRING=-np
//These flags will come after all flags given to MPIRun.(see
/home/mig/installed/vtkCVS/VTK/CMakeLists.txt
// for more info.)
VTK_MPI_POSTFLAGS:STRING=
//These flags will be directly before the executable that is being
// run by VTK_MPIRUN_EXE. (see
/home/mig/installed/vtkCVS/VTK/CMakeLists.txt
// for more info.)
VTK_MPI_PREFLAGS:STRING=
//The opengl library being used supports off screen Mesa calls.
//
VTK_OPENGL_HAS_OSMESA:BOOL=ON
//Value Computed by CMake
VTK_SOURCE_DIR:STATIC=/home/mig/installed/vtkCVS/VTK
//Build VTK with 64 bit ids
VTK_USE_64BIT_IDS:BOOL=OFF
//Turn this option off and tests will not popup windows
VTK_USE_DISPLAY:BOOL=ON
//Build VTK with gl2ps support.
VTK_USE_GL2PS:BOOL=ON
//Build the vtkHybrid kit.
VTK_USE_HYBRID:BOOL=ON
//Use mangled Mesa with OpenGL.
VTK_USE_MANGLED_MESA:BOOL=OFF
//Use Message Passing Interface (MPI) library for parallel support.
//
VTK_USE_MPI:BOOL=ON
//Build the vtkParallel kit.
VTK_USE_PARALLEL:BOOL=ON
//Build the vtkPatented kit. These classes are patented and may
// require a license to use.
VTK_USE_PATENTED:BOOL=ON
//Build the vtkRendering kit. Needed for displaying data.
VTK_USE_RENDERING:BOOL=ON
//Use the system's expat library.
VTK_USE_SYSTEM_EXPAT:BOOL=OFF
//Use the system's jpeg library.
VTK_USE_SYSTEM_JPEG:BOOL=OFF
//Use the system's png library.
VTK_USE_SYSTEM_PNG:BOOL=OFF
//Use the system's tiff library.
VTK_USE_SYSTEM_TIFF:BOOL=OFF
//Use the system's zlib library.
VTK_USE_SYSTEM_ZLIB:BOOL=OFF
//Build VTK with VolumePro support.
VTK_USE_VOLUMEPRO:BOOL=OFF
//Where can the hints file be found
VTK_WRAP_HINTS:FILEPATH=/home/mig/installed/vtkCVS/VTK/Wrapping/hints
//Wrap VTK classes into the Java language.
VTK_WRAP_JAVA:BOOL=OFF
//Wrap VTK classes into the Python language.
VTK_WRAP_PYTHON:BOOL=ON
//Path to an internal program.
VTK_WRAP_PYTHON_EXE:FILEPATH=/home/mig/installed/vtkCVS/VTK/bin/vtkWrapPython
//Wrap VTK classes into the TCL language.
VTK_WRAP_TCL:BOOL=ON
//Path to an internal program.
VTK_WRAP_TCL_EXE:FILEPATH=/home/mig/installed/vtkCVS/VTK/bin/vtkWrapTcl
//Path to an internal program.
VTK_WRAP_TCL_INIT_EXE:FILEPATH=/home/mig/installed/vtkCVS/VTK/bin/vtkWrapTclInit
//What is the path where the file X11/X.h can be found
X11_X11_INCLUDE_PATH:PATH=/usr/X11R6/include
//Where can the X11 library be found
X11_X11_LIB:FILEPATH=/usr/X11R6/lib/libX11.so
//Where can the Xext library be found
X11_Xext_LIB:FILEPATH=/usr/X11R6/lib/libXext.so
//What is the path where the file X11/Xlib.h can be found
X11_Xlib_INCLUDE_PATH:PATH=/usr/X11R6/include
//What is the path where the file X11/Xutil.h can be found
X11_Xutil_INCLUDE_PATH:PATH=/usr/X11R6/include
//Dependencies for the target
vtkCommonPython_LIB_DEPENDS:STATIC=vtkCommon;
//Dependencies for the target
vtkCommonTCL_LIB_DEPENDS:STATIC=vtkCommon;/usr/lib/libtcl8.3.so;m;
//Dependencies for the target
vtkCommon_LIB_DEPENDS:STATIC=-lpthread;-ldl;-lm;
//Dependencies for target
vtkDICOMParser_LIB_DEPENDS:STATIC=
//Dependencies for the target
vtkFilteringPython_LIB_DEPENDS:STATIC=vtkFiltering;vtkCommonPython;
//Dependencies for the target
vtkFilteringTCL_LIB_DEPENDS:STATIC=vtkFiltering;vtkCommonTCL;
//Dependencies for the target
vtkFiltering_LIB_DEPENDS:STATIC=vtkCommon;
//Dependencies for the target
vtkGenericFilteringPython_LIB_DEPENDS:STATIC=vtkGenericFiltering;vtkFilteringPython;
//Dependencies for the target
vtkGenericFilteringTCL_LIB_DEPENDS:STATIC=vtkGenericFiltering;vtkFilteringTCL;
//Dependencies for the target
vtkGenericFiltering_LIB_DEPENDS:STATIC=vtkFiltering;
//Dependencies for the target
vtkGraphicsPython_LIB_DEPENDS:STATIC=vtkGraphics;vtkFilteringPython;
//Dependencies for the target
vtkGraphicsTCL_LIB_DEPENDS:STATIC=vtkGraphics;vtkFilteringTCL;
//Dependencies for the target
vtkGraphics_LIB_DEPENDS:STATIC=vtkFiltering;
//Dependencies for the target
vtkHybridPython_LIB_DEPENDS:STATIC=vtkHybrid;vtkRenderingPython;vtkIOPython;vtkPatentedPython;
//Dependencies for the target
vtkHybridTCL_LIB_DEPENDS:STATIC=vtkHybrid;vtkRenderingTCL;vtkIOTCL;vtkPatentedTCL;
//Dependencies for the target
vtkHybrid_LIB_DEPENDS:STATIC=vtkRendering;vtkIO;vtkPatented;
//Dependencies for the target
vtkIOPython_LIB_DEPENDS:STATIC=vtkIO;vtkFilteringPython;
//Dependencies for the target
vtkIOTCL_LIB_DEPENDS:STATIC=vtkIO;vtkFilteringTCL;
//Dependencies for the target
vtkIO_LIB_DEPENDS:STATIC=vtkFiltering;vtkDICOMParser;vtkpng;vtkzlib;vtkjpeg;vtktiff;vtkexpat;
//Dependencies for the target
vtkImagingPython_LIB_DEPENDS:STATIC=vtkImaging;vtkFilteringPython;
//Dependencies for the target
vtkImagingTCL_LIB_DEPENDS:STATIC=vtkImaging;vtkFilteringTCL;
//Dependencies for the target
vtkImaging_LIB_DEPENDS:STATIC=vtkFiltering;
//Dependencies for the target
vtkParallelPython_LIB_DEPENDS:STATIC=vtkParallel;vtkRenderingPython;vtkIOPython;
//Dependencies for the target
vtkParallelTCL_LIB_DEPENDS:STATIC=vtkParallel;vtkRenderingTCL;vtkIOTCL;
//Dependencies for the target
vtkParallel_LIB_DEPENDS:STATIC=vtkRendering;vtkIO;/usr/lib/libmpi.so;/usr/lib/libmpi++.so;
//Dependencies for the target
vtkPatentedPython_LIB_DEPENDS:STATIC=vtkPatented;vtkGraphicsPython;vtkImagingPython;
//Dependencies for the target
vtkPatentedTCL_LIB_DEPENDS:STATIC=vtkPatented;vtkIOTCL;vtkGraphicsTCL;vtkImagingTCL;
//Dependencies for the target
vtkPatented_LIB_DEPENDS:STATIC=vtkGraphics;vtkImaging;vtkIO;
//Dependencies for the target
vtkRenderingPythonTkWidgets_LIB_DEPENDS:STATIC=vtkRendering;/usr/lib/libtk8.3.so;/usr/lib/libtcl8.3.so;m;
//Dependencies for the target
vtkRenderingPython_LIB_DEPENDS:STATIC=vtkRendering;vtkGraphicsPython;vtkImagingPython;
//Dependencies for the target
vtkRenderingTCL_LIB_DEPENDS:STATIC=vtkRendering;vtkGraphicsTCL;vtkImagingTCL;/usr/lib/libtk8.3.so;/usr/lib/libtcl8.3.so;m;
//Dependencies for the target
vtkRendering_LIB_DEPENDS:STATIC=vtkGraphics;vtkImaging;vtkIO;vtkftgl;vtkfreetype;vtkzlib;/usr/lib/libGL.so;/usr/X11R6/lib/libOSMesa.so;-lXt;-lSM;-lICE;-lSM;-lICE;-lSM;-lICE;/usr/X11R6/lib/libX11.so;/usr/X11R6/lib/libXext.so;/usr/X11R6/lib/libX11.so;/usr/X11R6/lib/libXext.so;/usr/X11R6/lib/libX11.so;/usr/X11R6/lib/libXext.so;
//Dependencies for target
vtkexpat_LIB_DEPENDS:STATIC=
//Dependencies for target
vtkfreetype_LIB_DEPENDS:STATIC=
//Dependencies for the target
vtkftgl_LIB_DEPENDS:STATIC=/usr/lib/libGL.so;vtkfreetype;
//Dependencies for target
vtkjpeg_LIB_DEPENDS:STATIC=
//Dependencies for the target
vtkpng_LIB_DEPENDS:STATIC=vtkzlib;
//Dependencies for the target
vtktiff_LIB_DEPENDS:STATIC=vtkzlib;vtkjpeg;
//Dependencies for target
vtkzlib_LIB_DEPENDS:STATIC=
-----------------------------------------------------------------------------------
More information about the vtkusers
mailing list