<html><head></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; ">Okay, here you go:<div><br></div><div><a href="http://www.paraview.org/Bug/view.php?id=10685">http://www.paraview.org/Bug/view.php?id=10685</a></div><div><br></div><div>Thanks a lot,</div><div>-Eric</div><div><br><div><div>On May 6, 2010, at 3:29 PM, Dave Partyka wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite">Yes Please make a bug. I want to make some tweaks to it and should be able to merge it in the next few days.<br><br><div class="gmail_quote">On Thu, May 6, 2010 at 3:26 PM, Eric E. Monson <span dir="ltr">&lt;<a href="mailto:emonson@cs.duke.edu">emonson@cs.duke.edu</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">Hey Dave,<br>
<br>
Mike's patch worked well for me, too. Would you be able to get this into the git head? It's really nice to be able to build on OS X with RPATH OFF without extra (outside CMake) requirements.<br>
<br>
I can put this in on the bug tracker if it will help.<br>
<div class="im"><br>
Thanks,<br>
-Eric<br>
<br>
------------------------------------------------------<br>
Eric E Monson<br>
Duke Visualization Technology Group<br>
<br>
<br>
</div><div><div></div><div class="h5">On Apr 9, 2010, at 2:33 PM, Michael Jackson wrote:<br>
<br>
&gt; # Generate "vtkSocketCommunicatorHash.h".<br>
&gt; if (APPLE AND NOT VTK_USE_RPATH)<br>
&gt; &nbsp; &nbsp; &nbsp; file(WRITE ${ParaView_BINARY_DIR}/bin/vtkHashSource.sh "#!/bin/sh\n" )<br>
&gt; &nbsp; &nbsp; &nbsp; file(APPEND ${ParaView_BINARY_DIR}/bin/vtkHashSource.sh "export DYLD_LIBRARY_PATH=${ParaView_BINARY_DIR}/bin\n" )<br>
&gt; &nbsp; &nbsp; &nbsp; file(APPEND ${ParaView_BINARY_DIR}/bin/vtkHashSource.sh "cd ${ParaView_BINARY_DIR}/bin\n" )<br>
&gt; &nbsp; &nbsp; &nbsp; file(APPEND ${ParaView_BINARY_DIR}/bin/vtkHashSource.sh "./vtkHashSource ${VTK_SOURCE_DIR}/Parallel/vtkSocketCommunicator.cxx vtkSocketCommunicatorHash &nbsp;${VTK_BINARY_DIR}/Parallel/vtkSocketCommunicatorHash.h\n")<br>

&gt; &nbsp; &nbsp; &nbsp; ADD_CUSTOM_COMMAND(<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; OUTPUT ${VTK_BINARY_DIR}/Parallel/vtkSocketCommunicatorHash.h<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; DEPENDS ${ParaView_BINARY_DIR}/bin/vtkHashSource.sh ${VTK_SOURCE_DIR}/Parallel/vtkSocketCommunicator.cxx<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; vtkHashSource<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; COMMAND /bin/chmod ugo+rx ${ParaView_BINARY_DIR}/bin/vtkHashSource.sh<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; COMMAND ${ParaView_BINARY_DIR}/bin/vtkHashSource.sh)<br>
&gt; else()<br>
&gt; &nbsp; &nbsp; &nbsp; ADD_CUSTOM_COMMAND(<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; OUTPUT ${VTK_BINARY_DIR}/Parallel/vtkSocketCommunicatorHash.h<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; DEPENDS ${VTK_SOURCE_DIR}/Parallel/vtkSocketCommunicator.cxx<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; vtkHashSource<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; COMMAND vtkHashSource<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ${VTK_SOURCE_DIR}/Parallel/vtkSocketCommunicator.cxx<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; vtkSocketCommunicatorHash vtkSocketCommunicatorHash.h<br>
&gt; &nbsp; &nbsp; &nbsp; &nbsp; )<br>
&gt; endif()<br>
&gt;<br>
&gt; Watch the wrapping on that. The email list will mess it up<br>
&gt; ___________________________________________________________<br>
&gt; Mike Jackson &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<a href="http://www.bluequartz.net/" target="_blank">www.bluequartz.net</a><br>
&gt; Principal Software Engineer &nbsp; &nbsp; &nbsp; <a href="mailto:mike.jackson@bluequartz.net">mike.jackson@bluequartz.net</a><br>
&gt; BlueQuartz Software &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Dayton, Ohio<br>
&gt;<br>
&gt;<br>
&gt; On Apr 9, 2010, at 1:50 PM, Dave Partyka wrote:<br>
&gt;<br>
&gt;&gt; VTK\Parallel\CMakeLists.txt Line 242.<br>
&gt;&gt;<br>
&gt;&gt; # Generate "vtkSocketCommunicatorHash.h".<br>
&gt;&gt; ADD_CUSTOM_COMMAND(<br>
&gt;&gt; &nbsp;OUTPUT ${VTK_BINARY_DIR}/Parallel/vtkSocketCommunicatorHash.h<br>
&gt;&gt; &nbsp;DEPENDS ${VTK_SOURCE_DIR}/Parallel/vtkSocketCommunicator.cxx<br>
&gt;&gt; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;vtkHashSource<br>
&gt;&gt; &nbsp;COMMAND vtkHashSource<br>
&gt;&gt; &nbsp; &nbsp;${VTK_SOURCE_DIR}/Parallel/vtkSocketCommunicator.cxx<br>
&gt;&gt; &nbsp; &nbsp;vtkSocketCommunicatorHash vtkSocketCommunicatorHash.h<br>
&gt;&gt; &nbsp;)<br>
&gt;&gt;<br>
&gt;&gt; But setting the ENV at configure time won't help. Probably that command should be cmake -P &lt;small_script&gt; that does set the environment and then execute_process vtkHashSource.<br>
&gt;&gt;<br>
&gt;&gt; On Fri, Apr 9, 2010 at 1:46 PM, Michael Jackson &lt;<a href="mailto:mike.jackson@bluequartz.net">mike.jackson@bluequartz.net</a>&gt; wrote:<br>
&gt;&gt; Would something like:<br>
&gt;&gt;<br>
&gt;&gt; if (VTK_RPATH == OFF &amp;&amp; APPLE == TRUE)<br>
&gt;&gt; set ($ENV{DYLD_LIBRARY_PATH} ${CMAKE_RUNTIME_PATH})<br>
&gt;&gt; endif()<br>
&gt;&gt;<br>
&gt;&gt; I'm going to guess that might have some side effects but not really sure what those might be.<br>
&gt;&gt;<br>
&gt;&gt; Where is the CMAKE_CUSTOM_COMMAND located in the ParaView cmake files. I'll give it a shot and see what happens.<br>
&gt;&gt;<br>
&gt;&gt; --<br>
&gt;&gt;<br>
&gt;&gt; Mike Jackson &lt;<a href="http://www.bluequartz.net/" target="_blank">www.bluequartz.net</a>&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; On Apr 9, 2010, at 1:31 PM, Dave Partyka wrote:<br>
&gt;&gt;<br>
&gt;&gt; I haven't had time to track down a good fix for this besides setting my DYLD_LIBRARY_PATH but If you have a fix then I will gladly commit it!<br>
&gt;&gt;<br>
&gt;&gt; On Fri, Apr 9, 2010 at 1:30 PM, Eric E. Monson &lt;<a href="mailto:emonson@cs.duke.edu">emonson@cs.duke.edu</a>&gt; wrote:<br>
&gt;&gt; Hey Mike,<br>
&gt;&gt;<br>
&gt;&gt; Are you configuring here with VTK_USE_RPATH = OFF? This is what happens to me, too, if I don't turn it ON.<br>
&gt;&gt;<br>
&gt;&gt; Thanks,<br>
&gt;&gt; -Eric<br>
&gt;&gt;<br>
&gt;&gt; ------------------------------------------------------<br>
&gt;&gt; Eric E Monson<br>
&gt;&gt; Duke Visualization Technology Group<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; On Apr 9, 2010, at 1:06 PM, Michael Jackson wrote:<br>
&gt;&gt;<br>
&gt;&gt; &gt; Checkout/updated from CVS this afternoon and a fresh configure and compile I get the following error on OS X 10.5.8:<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; [ 23%] Generating vtkSocketCommunicatorHash.h<br>
&gt;&gt; &gt; dyld: Library not loaded: libvtksys.pv3.8.dylib<br>
&gt;&gt; &gt; &nbsp;Referenced from: /Users/Shared/Kitware-CVS/ParaView3/Build/VTK/Parallel/../../bin/vtkHashSource<br>
&gt;&gt; &gt; &nbsp;Reason: image not found<br>
&gt;&gt; &gt; /bin/sh: line 1: 19254 Trace/BPT trap &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;../../bin/vtkHashSource /Users/Shared/Kitware-CVS/ParaView3/VTK/Parallel/vtkSocketCommunicator.cxx vtkSocketCommunicatorHash vtkSocketCommunicatorHash.h<br>
&gt;&gt; &gt; make[2]: *** [VTK/Parallel/vtkSocketCommunicatorHash.h] Error 133<br>
&gt;&gt; &gt; make[1]: *** [VTK/Parallel/CMakeFiles/vtkParallel.dir/all] Error 2<br>
&gt;&gt; &gt; make: *** [all] Error 2<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; The issue is that the libraries do not have a full install_name on them which forces me to remember to "export DYLD_LIBRARY_PATH=`pwd`/bin" from the build folder. Can this be added to the CMake custom command for OS X? I seem to hit this error every time I do a fresh configure.<br>

&gt;&gt; &gt;<br>
&gt;&gt; &gt; ___________________________________________________________<br>
&gt;&gt; &gt; Mike Jackson &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<a href="http://www.bluequartz.net/" target="_blank">www.bluequartz.net</a><br>
&gt;&gt; &gt; Principal Software Engineer &nbsp; &nbsp; &nbsp; <a href="mailto:mike.jackson@bluequartz.net">mike.jackson@bluequartz.net</a><br>
&gt;&gt; &gt; BlueQuartz Software &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Dayton, Ohio<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;<br>
</div></div><div><div></div><div class="h5">&gt; _______________________________________________<br>
&gt; Powered by <a href="http://www.kitware.com/" target="_blank">www.kitware.com</a><br>
&gt;<br>
&gt; 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>
&gt;<br>
&gt; 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>
&gt;<br>
&gt; Follow this link to subscribe/unsubscribe:<br>
&gt; <a href="http://www.paraview.org/mailman/listinfo/paraview" target="_blank">http://www.paraview.org/mailman/listinfo/paraview</a><br>
<br>
</div></div></blockquote></div><br>
</blockquote></div><br></div></body></html>