On Thu, Nov 15, 2012 at 11:21:52AM -0500, Andrew E Slaughter wrote: > I found two problems that may be of interest to the developers. They could > be my problems and not yours, but just in case. > > (1) When using VTK there is a problem with the include directory if you use > VTK build from source. I built VTK5.10.1 from source, if you follow the > standard build procedures for an in source build (cmake . then make) or > out-of-soure build (mkdir build; cd build; cmake ..; make) the header files > remain in subdirectories thus when libMesh calls them in VTK_IO.C it does > not find them. Everything works great if you use a VTK package (I had no > problems with VTK-5.8 installed via a package manager). If any one knows > how to build VTK with a single include directory I would like to know how, > I couldn't find much, but I didn't look that hard either.
You have to use the install routine of VTKs cmake. Use ccmake to set CMAKE_INSTALL_PREFIX to something like "~/opt", then run make install. You should find your in ~/opt/include/vtk-* and the libraries in ~/opt/lib/vtk-* > > (2) I received the following linking error, with many like them, with the > latest trunk from SVN. I did not receive these errors with 0.8-rc1. This is > likely due to me using Cmake to build my own applications, but I can't find > any difference in the include and library directories between the latest > trunk and 0.8-rc1. > > /home/slaughter/packages/libmesh-trunk/libmesh/contrib/lib/x86_64-unknown-linux-gnu_opt/libmetis.so: > undefined reference to `gk_randint32' > /home/slaughter/packages/libmesh-trunk/libmesh/contrib/lib/x86_64-unknown-linux-gnu_opt/libmetis.so: > undefined reference to `gk_errexit' > > > -- > Andrew E. Slaughter, PhD > [email protected] > > Materials Process Design and Control Laboratory > Sibley School of Mechanical and Aerospace Engineering > 169 Frank H. T. Rhodes Hall > Cornell University > Ithaca, NY 14853-3801 > (607) 229-1829 > http://aeslaughter.github.com/ > ------------------------------------------------------------------------------ > Monitor your physical, virtual and cloud infrastructure from a single > web console. Get in-depth insight into apps, servers, databases, vmware, > SAP, cloud infrastructure, etc. Download 30-day Free Trial. > Pricing starts from $795 for 25 servers or applications! > http://p.sf.net/sfu/zoho_dev2dev_nov > _______________________________________________ > Libmesh-users mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/libmesh-users ------------------------------------------------------------------------------ Monitor your physical, virtual and cloud infrastructure from a single web console. Get in-depth insight into apps, servers, databases, vmware, SAP, cloud infrastructure, etc. Download 30-day Free Trial. Pricing starts from $795 for 25 servers or applications! http://p.sf.net/sfu/zoho_dev2dev_nov _______________________________________________ Libmesh-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/libmesh-users
