well, &quot;__array_new2&quot; isn't defined anywhere.. I've grep'ed my entire source tree (VTK, Mesa, ezViz, Xdmf, Xmdf, &amp; HDF5) and it's nowhere to be found.&nbsp; NM isn't very helpful either:<br><br><div style="margin-left: 40px; font-family: courier new,monospace;">
emerald0&gt; nm *.so | grep __array_new2<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; U __array_new2<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; U __array_new2<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; U __array_new2<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; U __array_new2<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; U __array_new2<br></div>
<br>Right now i'm operating on the assumption that &quot;__array_new2&quot; is actually a mangled version of someone's &quot;new&quot; operator.&nbsp; I just don't know who, nor do I know how to find out.<br><div style="margin-left: 40px; font-family: courier new,monospace;">
<br></div>As for CMake, I've tried several times to get 2.2.3 to work but it fails for a wide variety of reasons.&nbsp; the GNU compilers are &quot;broken&quot; on this machine (compiling with g++ give IOT/Abort Traps) so I have to use the Vendor compilers from HP.&nbsp; &quot;Bootstrap&quot; probably isn't the right word, because ./configure will run just fine if I set my CC=cc &amp; CXX=cxx beforehand.&nbsp; It's during the &quot;make&quot; that it fails.&nbsp; From the last attempt:
<br><br><div style="margin-left: 40px;">emerald0&gt; gmake<br>Scanning dependencies of target cmsys<br>Building C object Source/kwsys/CMakeFiles/cmsys.dir/ProcessUNIX.o<br>Building C object Source/kwsys/CMakeFiles/cmsys.dir/Base64.o
<br>Building CXX object Source/kwsys/CMakeFiles/cmsys.dir/Directory.o<br>Building CXX object Source/kwsys/CMakeFiles/cmsys.dir/RegularExpression.o<br>Building CXX object Source/kwsys/CMakeFiles/cmsys.dir/SystemTools.o<br>
Building CXX object Source/kwsys/CMakeFiles/cmsys.dir/CommandLineArguments.o<br>Linking CXX static library libcmsys.a<br>Scanning dependencies of target cmsys_c<br>Building C object Source/kwsys/CMakeFiles/cmsys_c.dir/ProcessUNIX.o
<br>Building C object Source/kwsys/CMakeFiles/cmsys_c.dir/Base64.o<br>Linking C static library libcmsys_c.a<br>Scanning dependencies of target testCommandLineArguments<br>Building CXX object Source/kwsys/CMakeFiles/testCommandLineArguments.dir/testCommandLineArguments.o
<br>Linking CXX executable ../../bin/testCommandLineArguments<br>ld:<br>Unresolved:<br>cmsys::CommandLineArguments::CommandLineArguments(void)<br>cmsys::CommandLineArguments::Initialize(int, char**)<br>cmsys::CommandLineArguments::SetClientData(void*)
<br>cmsys::CommandLineArguments::SetUnknownArgumentCallback(int (*)(const char*, void*))<br>cmsys::CommandLineArguments::AddArgument(const char*, cmsys::ArgumentTypeEnum, int*, const char*)<br>cmsys::CommandLineArguments::AddArgument(const char*, cmsys::ArgumentTypeEnum, double*, const char*)
<br>cmsys::CommandLineArguments::AddArgument(const char*, cmsys::ArgumentTypeEnum, char**, const char*)<br>cmsys::CommandLineArguments::AddArgument(const char*, cmsys::ArgumentTypeEnum, std::basic_string&lt;char, std::char_traits&lt;char&gt;, std::allocator&lt;char&gt; &gt;*, const char*)
<br>cmsys::CommandLineArguments::AddArgument(const char*, cmsys::ArgumentTypeEnum, bool*, const char*)<br>cmsys::CommandLineArguments::AddBooleanArgument(const char*, bool*, const char*)<br>cmsys::CommandLineArguments::AddBooleanArgument(const char*, int*, const char*)
<br>cmsys::CommandLineArguments::AddCallback(const char*, cmsys::ArgumentTypeEnum, int (*)(const char*, const char*, void*), void*, const char*)<br>cmsys::CommandLineArguments::Parse(void)<br>cmsys::CommandLineArguments::~CommandLineArguments(void)
<br>gmake[2]: *** [bin/testCommandLineArguments] Error 1<br>gmake[1]: *** [Source/kwsys/CMakeFiles/testCommandLineArguments.dir/all] Error 2<br>gmake: *** [all] Error 2<br>emerald0&gt;<br></div><br><br><br>As for a Dashboard, I don't have any problem with setting one up but there's a few &quot;gotcha&quot;'s there.&nbsp; This machine is only supposed to be here for another 4 months or so, plus due to the location there's lots of security things that might prevent me from doing it.&nbsp; Also, it would need to be able to run on a headless system without X or Graphics Hardware (X is installed, but not running).&nbsp; If it will run, I don't see any reason why I can't manually kick it off at nights, at least as long as we have the machine to test it on.
<br><div style="font-family: courier new,monospace;"><br></div><br><div><span class="gmail_quote">On 2/23/06, <b class="gmail_sendername">William A. Hoffman</b> &lt;<a href="mailto:billlist@nycap.rr.com">billlist@nycap.rr.com
</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">At 12:01 PM 2/23/2006, Randall Hand wrote:<br>&gt;I've been working on this for 2 days, and I'm running out of ideas.&nbsp;&nbsp;I can compile VTK just fine on our SC45, no errors at all, using cxx/cc and Shared libraries.&nbsp;&nbsp;I can compile applications that use these freshly compiled VTK libraries just fine, with no errors.
<br>&gt;<br>&gt;But every time I try to run them I get the following error:<br>&gt;emerald0&gt; ./vtk2xml<br>&gt;resolve_symbols: loader error: dlopen: libvtkVolumeRendering.so: symbol &quot;__array_new2&quot; unresolved<br>
<br>Have you sniffed around the system with nm, strings, and grep to find out if/where __array_new2 is<br>defined?<br><br>&gt;I've tried compiling them as static, and while they compile just fine, when apps try to link against them I get errors about no table of contents on every single .a file.&nbsp;&nbsp;Anyone have any idea what's going on here?\
<br><br>Sounds like ranlib is not being run.<br><br>&gt;&nbsp;&nbsp;I'm using Cmake 2.0p6, as there are no binaries provided for 2.2.3 and the bootstrap won't work<br><br>Why won't 2.2.3 bootstrap?&nbsp;&nbsp;What errors are you getting?&nbsp;&nbsp;I would recommend building cmake,
<br>and running its tests, because if they are not working, then VTK most likely will not work.<br><br>We used to have OSF dashboards, but the contributors stopped submitting them.<br>I am not surprised that it is not working.&nbsp;&nbsp; If you have access to one of these
<br>machines, and would like VTK/CMake to work on it, I can help you, but in return I would<br>request that you set up a dashboard and submit nightly.&nbsp;&nbsp;Otherwise, it is a waste of time, since<br>it will be broken a few months from now with some other problem.
<br><br>-Bill<br><br><br></blockquote></div><br><br clear="all"><br>-- <br>Randall Hand<br>Visualization Scientist, <br>ERDC-MSRC Vicksburg, MS<br>Homepage: <a href="http://www.yeraze.com">http://www.yeraze.com</a>