Hi Rich, in CMake gui is BUILD_SHARED_LIBS on or off, that is what decides if you're doing static or not.<br><br><div class="gmail_quote">On Mon, Apr 11, 2011 at 2:34 PM, Cook, Rich <span dir="ltr"><<a href="mailto:cook47@llnl.gov">cook47@llnl.gov</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">Hello,<br>
I don't know why or how I'm doing a static build and am not married to the idea -- it appears to be incidental to other choices I'm making. Â I certainly never checked a box or set a variable explicitly requesting a static build that I recall. Â I don't know if this list will allow me to attach the CMakeCache.txt file or if that would exceed a limit.<br>
Clearly the executables are not statically linked, or else I would not need rpath, so I don't know in what sense I'm doing a static build.<br>
The only libraries I'm statically linking are libsiloh5.a, libhdf5.a and libmili.a<br>
Cheers and thank you<br>
<font color="#888888">--Rich<br>
</font><div><div></div><div class="h5"><br>
On Apr 11, 2011, at 11:08 AM, Utkarsh Ayachit wrote:<br>
<br>
> Rich,<br>
><br>
> Dave just reminded me that you're doing a static build, I missed that.<br>
> In that case you will no have the "wrapper" executable I was referring<br>
> to and "shared forwarding" does not apply.<br>
> Out of curiosity, what libraries are you linking in shared with this<br>
> static build?<br>
><br>
> Utkarsh<br>
><br>
> On Mon, Apr 11, 2011 at 1:57 PM, Utkarsh Ayachit<br>
> <<a href="mailto:utkarsh.ayachit@kitware.com">utkarsh.ayachit@kitware.com</a>> wrote:<br>
>> I was hoping someone was going respond about the rpath stripping, but<br>
>> alas I suppose I'll have to :).<br>
>><br>
>> rpaths are stripped to ensure that installed executable don't depend<br>
>> on anything that is not installed. To circumvent the LD_LIBRARY_PATH<br>
>> issues, Paraview uses what we call "shared-forwarding". The paraview<br>
>> executable that gets installed in "bin" directory is not the real<br>
>> paraview executable instead it's a wrapper executable that sets up the<br>
>> environment variables and the forks the real paraview executable<br>
>> (which is trypically under lib/paraview-version/...).<br>
>><br>
>> So to diagnose the missing path, run the installed paraview with<br>
>> "--ldd" command line argument. What are the missing libraries and<br>
>> where are they located?<br>
>><br>
>> Utkarsh<br>
>><br>
>> On Mon, Apr 11, 2011 at 1:40 PM, Cook, Rich <<a href="mailto:cook47@llnl.gov">cook47@llnl.gov</a>> wrote:<br>
>>> I also forgot to include the fact that IMO the installer stripping the rpath out of binaries without any way to prevent this breaks my install and is in my opinion a bug :-) Â I have to install them by just copying them by hand.<br>
>>> -- Rich<br>
>>><br>
>>> On Apr 11, 2011, at 10:37 AM, Cook, Rich wrote:<br>
>>><br>
>>>> Hi, thanks for replying.<br>
>>>> I don't know what went wrong. Â One thing is that paraview wants to<br>
>>>> When I launch paraview, and then choose File->Open, then click on the "Files of Type" pull down menu in the File Open dialog, I see some Visit plugins, such as my ParaDIS reader, so I think some of the VisitBridge is "working" but I do not see a "Mili" file type option. Â Also the user who requested it is not able to open his mili files yet.<br>
>>>> Not sure what to check or how to proceed. Â Thanks for any help!<br>
>>>> -- Rich<br>
>>>><br>
>>>> On Apr 11, 2011, at 5:28 AM, Robert Maynard wrote:<br>
>>>><br>
>>>>> Hi Rich,<br>
>>>>><br>
>>>>> Can you give me some more information on what went wrong on install<br>
>>>>> time. I can spend some time this week making sure that static install<br>
>>>>> work properly.<br>
>>>>><br>
>>>>> On Fri, Apr 8, 2011 at 7:14 PM, Cook, Rich <<a href="mailto:cook47@llnl.gov">cook47@llnl.gov</a>> wrote:<br>
>>>>>> Sorry to speak up again. Â I got MILI to compile but I think it did not install correctly. Â Am I SOL for now? Â The Mili support was the whole point of my trying to get this to work. Â :-)<br>
>>>>>> Thanks for all the support<br>
>>>>>> -- Rich<br>
>>>>>><br>
>>>>>> On Apr 8, 2011, at 12:06 PM, Robert Maynard wrote:<br>
>>>>>><br>
>>>>>>> Hi Rich,<br>
>>>>>>><br>
>>>>>>> I am currently working on fixing the issues with the MILI reader not<br>
>>>>>>> compiling correctly.<br>
>>>>>>><br>
>>>>>>> On Fri, Apr 8, 2011 at 1:15 PM, Cook, Rich <<a href="mailto:cook47@llnl.gov">cook47@llnl.gov</a>> wrote:<br>
>>>>>>>> Aha, it's the semicolon syntax that was unknown to me. Â Thanks.<br>
>>>>>>>> I do want to reiterate that turning on the MILI reader did not result in a<br>
>>>>>>>> successful reader build, because the include and library settings do not get<br>
>>>>>>>> placed in the right makefiles. Â I have to manually hack the link.txt and<br>
>>>>>>>> make.flags files or otherwise do workarounds for that. Â As long as I'm doing<br>
>>>>>>>> that anyhow, I can just place the deeper dependencies there as well.<br>
>>>>>>>> On Apr 8, 2011, at 6:26 AM, David Partyka wrote:<br>
>>>>>>>><br>
>>>>>>>> Hi Rich,<br>
>>>>>>>> Because you're building static you need to tell CMake what your<br>
>>>>>>>> Silo/Mili/HDF5 dependencies are because it has no way of knowing. To do<br>
>>>>>>>> this, in ccmake/cmake-gui you can list them in the same variables where you<br>
>>>>>>>> specified SILO_LIBRARY,MILI_LIBRARY, HDF5_LIBRARY/HDF5_LIBRARIES. This<br>
>>>>>>>> should give CMake enough information to compute the correct link line.<br>
>>>>>>>> For example, you should be able to set these in ccmake/cmake-gui like so:<br>
>>>>>>>> SILO_LIBRARY /usr/gapps/visit/silo/4.8/linux-x86_64_gcc-4.1/lib/libsiloh5.a;/usr/gapps/visit/szip/2.1/linux-x86_64_gcc-4.1/lib/libsz.a<br>
>>>>>>>> On Thu, Apr 7, 2011 at 7:19 PM, Cook, Rich <<a href="mailto:cook47@llnl.gov">cook47@llnl.gov</a>> wrote:<br>
>>>>>>>>><br>
>>>>>>>>> OK, I just solved this by hacking into all the link.txt files I found<br>
>>>>>>>>> laying around. Â This has been one ugly build process!<br>
>>>>>>>>> -- Rich<br>
>>>>>>>>><br>
>>>>>>>>> On Apr 7, 2011, at 4:00 PM, Cook, Rich wrote:<br>
>>>>>>>>><br>
>>>>>>>>>> So, our libmili.a, libsiloh5.a and libhdf5.a libraries have dependencies<br>
>>>>>>>>>> on another library, libsz.  I've tried adding  -lz<br>
>>>>>>>>>> /usr/gapps/visit/szip/2.1/linux-x86_64_gcc-4.1/lib/libsz.a  to every STRING<br>
>>>>>>>>>> I can in the CMakeCache.txt file, but I'm stuck on this error. Â How can I<br>
>>>>>>>>>> append linker flags to what cmake is doing here? Â You can see that the -lz<br>
>>>>>>>>>> and libsz.a are being inserted here, but it needs to come at the end of the<br>
>>>>>>>>>> link line to resolve the symbols. Â I might resort to sed and grep if this<br>
>>>>>>>>>> keeps up, but I hope I don't have to.<br>
>>>>>>>>>><br>
>>>>>>>>>><br>
>>>>>>>>>> Linking CXX executable ../../../../bin/ServerManagerStateLoader<br>
>>>>>>>>>> cd<br>
>>>>>>>>>> /nfs/tmp2/rcook/Paraview/3.10/build/ParaView-3.10.0/build/Servers/ServerManager/Testing/Cxx<br>
>>>>>>>>>> && /usr/gapps/visit/cmake/2.8.3/linux-x86_64_gcc-4.1/bin/cmake -E<br>
>>>>>>>>>> cmake_link_script CMakeFiles/ServerManagerStateLoader.dir/link.txt<br>
>>>>>>>>>> --verbose=1<br>
>>>>>>>>>> /usr/local/bin/g++<br>
>>>>>>>>>> -I/usr/global/tools/Kitware/Paraview/3.10/chaos_4_x86_64_ib/include<br>
>>>>>>>>>> -I/usr/gapps/visit/mili/1.10.0/linux-x86_64_gcc-4.1/include<br>
>>>>>>>>>> -Wno-deprecated -g<br>
>>>>>>>>>> -L/usr/global/tools/Kitware/Paraview/3.10/chaos_4_x86_64_ib/lib<br>
>>>>>>>>>> -L/usr/gapps/visit/mili/1.10.0/linux-x86_64_gcc-4.1/lib -lmili<br>
>>>>>>>>>> /usr/gapps/visit/hdf5/1.8.4/linux-x86_64_gcc-4.1/lib/libhdf5.a -lz<br>
>>>>>>>>>> /usr/gapps/visit/szip/2.1/linux-x86_64_gcc-4.1/lib/libsz.a<br>
>>>>>>>>>> CMakeFiles/ServerManagerStateLoader.dir/ServerManagerStateLoader.cxx.o<br>
>>>>>>>>>> CMakeFiles/ServerManagerStateLoader.dir/vtkTestingProcessModuleGUIHelper.cxx.o<br>
>>>>>>>>>> CMakeFiles/ServerManagerStateLoader.dir/vtkTestingOptions.cxx.o  -o<br>
>>>>>>>>>> ../../../../bin/ServerManagerStateLoader -rdynamic<br>
>>>>>>>>>> ../../../../bin/libvtkPVServerManager.a ../../../../bin/libvtkPVFiltersCS.a<br>
>>>>>>>>>> ../../../../bin/libvtkPVFilters.a ../../../../bin/libvtkPVServerCommonCS.a<br>
>>>>>>>>>> ../../../../bin/libvtkPVServerCommon.a<br>
>>>>>>>>>> ../../../../bin/libvtkPVCommandOptions.a ../../../../bin/libvtkChartsCS.a<br>
>>>>>>>>>> ../../../../bin/libvtkViewsCS.a ../../../../bin/libvtkInfovisCS.a<br>
>>>>>>>>>> ../../../../bin/libQVTK.a<br>
>>>>>>>>>> /usr/global/tools/Kitware/Paraview/3.10/chaos_4_x86_64_ib/lib/libQtWebKit.so<br>
>>>>>>>>>> /usr/global/tools/Kitware/Paraview/3.10/chaos_4_x86_64_ib/lib/libQtXmlPatterns.so<br>
>>>>>>>>>> /usr/global/tools/Kitware/Paraview/3.10/chaos_4_x86_64_ib/lib/libQtNetwork.so<br>
>>>>>>>>>> ../../../../bin/libIceTMPI.a ../../../../bin/libIceTGL.a<br>
>>>>>>>>>> ../../../../bin/libIceTCore.a -lGLU<br>
>>>>>>>>>> ../../../../bin/libvtkVolumeRenderingCS.a<br>
>>>>>>>>>> ../../../../bin/libvtkVolumeRendering.a ../../../../bin/libvtkWidgetsCS.a<br>
>>>>>>>>>> ../../../../bin/libKWCommon.a ../../../../bin/libvtkCharts.a<br>
>>>>>>>>>> ../../../../bin/libvtkViews.a ../../../../bin/libvtkInfovis.a<br>
>>>>>>>>>> ../../../../bin/libvtkWidgets.a ../../../../bin/libvtkalglib.a<br>
>>>>>>>>>> ../../../../bin/libvtkXdmfCS.a ../../../../bin/libvtkXdmf.a<br>
>>>>>>>>>> ../../../../bin/libXdmf.a ../../../../bin/libvtklibxml2.a -lm<br>
>>>>>>>>>> ../../../../bin/libvtkVisItDatabasesCS.a<br>
>>>>>>>>>> ../../../../bin/libvtkVisItAVTAlgorithmsCS.a<br>
>>>>>>>>>> ../../../../bin/libvtkHybridCS.a ../../../../bin/libvtkParallelCS.a<br>
>>>>>>>>>> ../../../../bin/libvtkHybrid.a ../../../../bin/libvtkParallel.a<br>
>>>>>>>>>> ../../../../bin/libVPIC.a ../../../../bin/libCosmo.a<br>
>>>>>>>>>> /usr/local/tools/mvapich-gnu/lib/shared/libmpich.so<br>
>>>>>>>>>> ../../../../bin/libvtkexoIIc.a ../../../../bin/libvtkRenderingCS.a<br>
>>>>>>>>>> ../../../../bin/libvtkRendering.a ../../../../bin/libvtkftgl.a<br>
>>>>>>>>>> /usr/global/tools/Kitware/Paraview/3.10/chaos_4_x86_64_ib/lib/libQtGui.so<br>
>>>>>>>>>> /usr/global/tools/Kitware/Paraview/3.10/chaos_4_x86_64_ib/lib/libQtSql.so<br>
>>>>>>>>>> /usr/global/tools/Kitware/Paraview/3.10/chaos_4_x86_64_ib/lib/libQtCore.so<br>
>>>>>>>>>> -lGL ../../../../bin/libvtkfreetype.a -lXt -lSM -lICE -lX11 -lXext<br>
>>>>>>>>>> ../../../../bin/libvtkGenericFilteringCS.a<br>
>>>>>>>>>> ../../../../bin/libvtkGenericFiltering.a ../../../../bin/libvtkGraphicsCS.a<br>
>>>>>>>>>> ../../../../bin/libvtkImagingCS.a ../../../../bin/libvtkIOCS.a<br>
>>>>>>>>>> ../../../../bin/libvtkFilteringCS.a ../../../../bin/libvtkCommonCS.a<br>
>>>>>>>>>> ../../../../bin/libvtkClientServer.a ../../../../bin/libvtkVisItDatabases.a<br>
>>>>>>>>>> ../../../../bin/libvtkVisItAVTAlgorithms.a<br>
>>>>>>>>>> ../../../../bin/libavtdatabase_par.a ../../../../bin/libavtpipeline_par.a<br>
>>>>>>>>>> ../../../../bin/libavtdbatts.a ../../../../bin/libavtivp.a<br>
>>>>>>>>>> ../../../../bin/libvisit_vtk.a ../../../../bin/libvtkGraphics.a<br>
>>>>>>>>>> ../../../../bin/libvtkverdict.a ../../../../bin/libvtkImaging.a<br>
>>>>>>>>>> ../../../../bin/liblightweight_visit_vtk.a ../../../../bin/libvtkIO.a<br>
>>>>>>>>>> ../../../../bin/libvtkDICOMParser.a ../../../../bin/libvtkNetCDF_cxx.a<br>
>>>>>>>>>> ../../../../bin/libvtkmetaio.a ../../../../bin/libvtksqlite.a<br>
>>>>>>>>>> ../../../../bin/libvtkpng.a ../../../../bin/libvtktiff.a<br>
>>>>>>>>>> ../../../../bin/libvtkzlib.a ../../../../bin/libvtkjpeg.a<br>
>>>>>>>>>> ../../../../bin/libvtkexpat.a ../../../../bin/libvtkFiltering.a<br>
>>>>>>>>>> ../../../../bin/libavtmath.a ../../../../bin/libvtkCommon.a<br>
>>>>>>>>>> ../../../../bin/libvtksys.a -lm -lpthread -lz<br>
>>>>>>>>>> /usr/gapps/visit/szip/2.1/linux-x86_64_gcc-4.1/lib/libsz.a -ldl<br>
>>>>>>>>>> ../../../../bin/libvisitcommon.a ../../../../bin/libvtkNetCDF.a<br>
>>>>>>>>>> /usr/gapps/visit/hdf5/1.8.4/linux-x86_64_gcc-4.1/lib/libhdf5.a<br>
>>>>>>>>>> /usr/gapps/visit/silo/4.8/linux-x86_64_gcc-4.1/lib/libsiloh5.a<br>
>>>>>>>>>> /usr/gapps/visit/cgns/3.0.8/linux-x86_64_gcc-4.1/lib/libcgns.a<br>
>>>>>>>>>> /usr/gapps/visit/mili/1.10.0/linux-x86_64_gcc-4.1/lib/libmili.a<br>
>>>>>>>>>> -Wl,-rpath,/usr/global/tools/Kitware/Paraview/3.10/chaos_4_x86_64_ib/lib:/usr/local/tools/mvapich-gnu/lib/shared<br>
>>>>>>>>>> /usr/gapps/visit/hdf5/1.8.4/linux-x86_64_gcc-4.1/lib/libhdf5.a(H5Z.o):<br>
>>>>>>>>>> In function `H5Z_init_interface':<br>
>>>>>>>>>> H5Z.c:(.text+0x27d): undefined reference to `SZ_encoder_enabled'<br>
>>>>>>>>>><br>
>>>>>>>>>> /usr/gapps/visit/hdf5/1.8.4/linux-x86_64_gcc-4.1/lib/libhdf5.a(H5Zszip.o):<br>
>>>>>>>>>> In function `H5Z_filter_szip':<br>
>>>>>>>>>> H5Zszip.c:(.text+0x121): undefined reference to<br>
>>>>>>>>>> `SZ_BufftoBuffDecompress'<br>
>>>>>>>>>> H5Zszip.c:(.text+0x1ce): undefined reference to `SZ_BufftoBuffCompress'<br>
>>>>>>>>>><br>
>>>>>>>>>> /usr/gapps/visit/silo/4.8/linux-x86_64_gcc-4.1/lib/libsiloh5.a(silo_hdf5.o):<br>
>>>>>>>>>> In function `db_hdf5_InqMeshName':<br>
>>>>>>>>>> silo_hdf5.c:(.text+0x839e): undefined reference to `H5Topen1'<br>
>>>>>>>>>><br>
>>>>>>>>>> /usr/gapps/visit/silo/4.8/linux-x86_64_gcc-4.1/lib/libsiloh5.a(silo_hdf5.o):<br>
>>>>>>>>>> In function `db_hdf5_hdrwr':<br>
>>>>>>>>>><br>
>>>>>>>>>> --<br>
>>>>>>>>>> âœRichard Cook<br>
>>>>>>>>>> ✇ Lawrence Livermore National Laboratory<br>
>>>>>>>>>> Bldg-453 Rm-4024, Mail Stop L-557<br>
>>>>>>>>>> 7000 East Avenue, Â Livermore, CA, 94550, USA<br>
>>>>>>>>>> ☎ (office) <a href="tel:%28925%29%20423-9605" value="+19254239605">(925) 423-9605</a><br>
>>>>>>>>>> ☎ (fax) <a href="tel:%28925%29%20423-6961" value="+19254236961">(925) 423-6961</a><br>
>>>>>>>>>> ---<br>
>>>>>>>>>> Information Management & Graphics Grp., Services & Development Div.,<br>
>>>>>>>>>> Integrated Computing & Communications Dept.<br>
>>>>>>>>>> (opinions expressed herein are mine and not those of LLNL)<br>
>>>>>>>>>><br>
>>>>>>>>>><br>
>>>>>>>>>><br>
>>>>>>>>>> _______________________________________________<br>
>>>>>>>>>> Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
>>>>>>>>>><br>
>>>>>>>>>> Visit other Kitware open-source projects at<br>
>>>>>>>>>> <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
>>>>>>>>>><br>
>>>>>>>>>> Please keep messages on-topic and check the ParaView Wiki at:<br>
>>>>>>>>>> <a href="http://paraview.org/Wiki/ParaView" target="_blank">http://paraview.org/Wiki/ParaView</a><br>
>>>>>>>>>><br>
>>>>>>>>>> Follow this link to subscribe/unsubscribe:<br>
>>>>>>>>>> <a href="http://www.paraview.org/mailman/listinfo/paraview" target="_blank">http://www.paraview.org/mailman/listinfo/paraview</a><br>
>>>>>>>>><br>
>>>>>>>>> --<br>
>>>>>>>>> âœRichard Cook<br>
>>>>>>>>> ✇ Lawrence Livermore National Laboratory<br>
>>>>>>>>> Bldg-453 Rm-4024, Mail Stop L-557<br>
>>>>>>>>> 7000 East Avenue, Â Livermore, CA, 94550, USA<br>
>>>>>>>>> ☎ (office) <a href="tel:%28925%29%20423-9605" value="+19254239605">(925) 423-9605</a><br>
>>>>>>>>> ☎ (fax) <a href="tel:%28925%29%20423-6961" value="+19254236961">(925) 423-6961</a><br>
>>>>>>>>> ---<br>
>>>>>>>>> Information Management & Graphics Grp., Services & Development Div.,<br>
>>>>>>>>> Integrated Computing & Communications Dept.<br>
>>>>>>>>> (opinions expressed herein are mine and not those of LLNL)<br>
>>>>>>>>><br>
>>>>>>>>><br>
>>>>>>>>><br>
>>>>>>>>> _______________________________________________<br>
>>>>>>>>> Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
>>>>>>>>><br>
>>>>>>>>> Visit other Kitware open-source projects at<br>
>>>>>>>>> <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
>>>>>>>>><br>
>>>>>>>>> Please keep messages on-topic and check the ParaView Wiki at:<br>
>>>>>>>>> <a href="http://paraview.org/Wiki/ParaView" target="_blank">http://paraview.org/Wiki/ParaView</a><br>
>>>>>>>>><br>
>>>>>>>>> Follow this link to subscribe/unsubscribe:<br>
>>>>>>>>> <a href="http://www.paraview.org/mailman/listinfo/paraview" target="_blank">http://www.paraview.org/mailman/listinfo/paraview</a><br>
>>>>>>>><br>
>>>>>>>><br>
>>>>>>>> --<br>
>>>>>>>> âœRichard Cook<br>
>>>>>>>> ✇ Lawrence Livermore National Laboratory<br>
>>>>>>>> Bldg-453 Rm-4024, Mail Stop L-557<br>
>>>>>>>> 7000 East Avenue, Â Livermore, CA, 94550, USA<br>
>>>>>>>> ☎ (office) <a href="tel:%28925%29%20423-9605" value="+19254239605">(925) 423-9605</a><br>
>>>>>>>> ☎ (fax) <a href="tel:%28925%29%20423-6961" value="+19254236961">(925) 423-6961</a><br>
>>>>>>>> ---<br>
>>>>>>>> Information Management & Graphics Grp., Services & Development Div.,<br>
>>>>>>>> Integrated Computing & Communications Dept.<br>
>>>>>>>> (opinions expressed herein are mine and not those of LLNL)<br>
>>>>>>>><br>
>>>>>>>><br>
>>>>>>>><br>
>>>>>>>> _______________________________________________<br>
>>>>>>>> Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
>>>>>>>><br>
>>>>>>>> Visit other Kitware open-source projects at<br>
>>>>>>>> <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
>>>>>>>><br>
>>>>>>>> Please keep messages on-topic and check the ParaView Wiki at:<br>
>>>>>>>> <a href="http://paraview.org/Wiki/ParaView" target="_blank">http://paraview.org/Wiki/ParaView</a><br>
>>>>>>>><br>
>>>>>>>> Follow this link to subscribe/unsubscribe:<br>
>>>>>>>> <a href="http://www.paraview.org/mailman/listinfo/paraview" target="_blank">http://www.paraview.org/mailman/listinfo/paraview</a><br>
>>>>>>>><br>
>>>>>>>><br>
>>>>>>><br>
>>>>>>><br>
>>>>>>><br>
>>>>>>> --<br>
>>>>>>> Robert Maynard<br>
>>>>>><br>
>>>>>> --<br>
>>>>>> âœRichard Cook<br>
>>>>>> ✇ Lawrence Livermore National Laboratory<br>
>>>>>> Bldg-453 Rm-4024, Mail Stop L-557<br>
>>>>>> 7000 East Avenue, Â Livermore, CA, 94550, USA<br>
>>>>>> ☎ (office) <a href="tel:%28925%29%20423-9605" value="+19254239605">(925) 423-9605</a><br>
>>>>>> ☎ (fax) <a href="tel:%28925%29%20423-6961" value="+19254236961">(925) 423-6961</a><br>
>>>>>> ---<br>
>>>>>> Information Management & Graphics Grp., Services & Development Div., Integrated Computing & Communications Dept.<br>
>>>>>> (opinions expressed herein are mine and not those of LLNL)<br>
>>>>>><br>
>>>>>><br>
>>>>>><br>
>>>>>><br>
>>>>><br>
>>>>><br>
>>>>><br>
>>>>> --<br>
>>>>> Robert Maynard<br>
>>>><br>
>>>> --<br>
>>>> âœRichard Cook<br>
>>>> ✇ Lawrence Livermore National Laboratory<br>
>>>> Bldg-453 Rm-4024, Mail Stop L-557<br>
>>>> 7000 East Avenue, Â Livermore, CA, 94550, USA<br>
>>>> ☎ (office) <a href="tel:%28925%29%20423-9605" value="+19254239605">(925) 423-9605</a><br>
>>>> ☎ (fax) <a href="tel:%28925%29%20423-6961" value="+19254236961">(925) 423-6961</a><br>
>>>> ---<br>
>>>> Information Management & Graphics Grp., Services & Development Div., Integrated Computing & Communications Dept.<br>
>>>> (opinions expressed herein are mine and not those of LLNL)<br>
>>>><br>
>>>><br>
>>>><br>
>>><br>
>>> --<br>
>>> âœRichard Cook<br>
>>> ✇ Lawrence Livermore National Laboratory<br>
>>> Bldg-453 Rm-4024, Mail Stop L-557<br>
>>> 7000 East Avenue, Â Livermore, CA, 94550, USA<br>
>>> ☎ (office) <a href="tel:%28925%29%20423-9605" value="+19254239605">(925) 423-9605</a><br>
>>> ☎ (fax) <a href="tel:%28925%29%20423-6961" value="+19254236961">(925) 423-6961</a><br>
>>> ---<br>
>>> Information Management & Graphics Grp., Services & Development Div., Integrated Computing & Communications Dept.<br>
>>> (opinions expressed herein are mine and not those of LLNL)<br>
>>><br>
>>><br>
>>><br>
>>> _______________________________________________<br>
>>> Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
>>><br>
>>> Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
>>><br>
>>> Please keep messages on-topic and check the ParaView Wiki at: <a href="http://paraview.org/Wiki/ParaView" target="_blank">http://paraview.org/Wiki/ParaView</a><br>
>>><br>
>>> Follow this link to subscribe/unsubscribe:<br>
>>> <a href="http://www.paraview.org/mailman/listinfo/paraview" target="_blank">http://www.paraview.org/mailman/listinfo/paraview</a><br>
>>><br>
>><br>
<br>
--<br>
âœRichard Cook<br>
✇ Lawrence Livermore National Laboratory<br>
Bldg-453 Rm-4024, Mail Stop L-557<br>
7000 East Avenue, Â Livermore, CA, 94550, USA<br>
☎ (office) <a href="tel:%28925%29%20423-9605" value="+19254239605">(925) 423-9605</a><br>
☎ (fax) <a href="tel:%28925%29%20423-6961" value="+19254236961">(925) 423-6961</a><br>
---<br>
Information Management & Graphics Grp., Services & Development Div., Integrated Computing & Communications Dept.<br>
(opinions expressed herein are mine and not those of LLNL)<br>
<br>
<br>
<br>
</div></div></blockquote></div><br>