[Paraview] CVS Build error

Tom Hosiawa th032@rogers.com
29 Jan 2003 22:26:49 -0500


> When you say "ParaView from cvs", do you mean the release branch 
> (ParaView-0-6) or the development ? Also, do you use ParaViewComplete
> or separate VTK and ParaView trees ?
I think its the development branch, ParaViewComplete; I did the one of
the webpage:
"cvs -d :pserver:anonymous@public.kitware.com:/cvsroot/ParaView co -r
ParaView-0-6 ParaViewComplete"

> > I took a look into that file and found this, its taking the else part
> > since I see in my CMakeList file its set to OFF. How do I know if I
> > should be using VKT_USE_ANSI_STDLIB??? 
> > ---------
> > #ifdef VTK_USE_ANSI_STDLIB
> > #define VTK_IOS_NOCREATE
> > #else
> > #define VTK_IOS_NOCREATE | ios::nocreate
> > #endif
> > --------
> > 
> 
> This is a work-around for older gnu compilers. If you are using gcc 3.0
> or older, you should set VTK_USE_ANSI_STDLIB CMake (advanced) setting  
> to ON. In the future, this setting will be on by default.
> 

I just checked my version of gcc, its 3.2; doesn't this mean it should 
built without error???

Anyways, I did ccmake with VTK_US_ANSI_STDLIB=ON this time and
everything built fine. But when it came to doing make install, I got an
error saying vtkRender.h not found, so I took a look into
"ParaViewComplete/VTK/Rendering" and saw everything was named Rendering
and not Render, so I changed vtkRender.h to vtkRendering.h the rest
installed fine. Could this be a bug???

There was some other error about CMakeCache.txt not found and I forgot 
now how I fixed it but I think I copied the one over from the
ParaViewComplete to the VTK directory.

Tom