<div dir="ltr">For others listening in, this fix will be included in the next stable release in ~10 days.</div><div class="gmail_extra"><br><br><div class="gmail_quote">On Tue, May 21, 2013 at 12:37 PM, Paul La Plante <span dir="ltr"><<a href="mailto:plaplant@andrew.cmu.edu" target="_blank">plaplant@andrew.cmu.edu</a>></span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word">Hi Nathan,<div><br></div><div>Thanks for the tip! Switching to the developer version fixed this.<span class="HOEnZb"><font color="#888888"><div>

<br></div></font></span><div><span class="HOEnZb"><font color="#888888">-Paul</font></span><div><div class="h5"><br><div><div>On May 21, 2013, at 1:10 PM, Nathan Goldbaum <<a href="mailto:nathan12343@gmail.com" target="_blank">nathan12343@gmail.com</a>> wrote:</div>

<br><blockquote type="cite"><div style="word-wrap:break-word"><div>Hi Paul,</div><div><br></div><div>This is due to an issue that has been fixed in the latest development version of yt.</div><div><br></div><div>Can you try installing that instead?  The development install script is here:</div>

<div><br></div><div><a href="http://hg.yt-project.org/yt/raw/yt/doc/install_script.sh" target="_blank">http://hg.yt-project.org/yt/raw/yt/doc/install_script.sh</a></div><div><br></div><div>-Nathan</div><br><div><div>On May 21, 2013, at 10:07 AM, Paul La Plante <<a href="mailto:plaplant@andrew.cmu.edu" target="_blank">plaplant@andrew.cmu.edu</a>> wrote:</div>

<br><blockquote type="cite"><div style="word-wrap:break-word">Thanks for your assistance. As Britton suggested, I used the Apple-provided compilers. But as Chris noted, I had trouble with sed while trying to export CC, so I made a symbolic link instead (to llvm-gcc, I'm not sure if it matters). Now it crashes on the 'Installing yt' step. The error message is included below. It looks like it can't link against gomp.<div>

<br></div><div>I am currently running again using Apple-provided non-llvm gcc to see if this fixes the problem.</div><div><br></div><div>-Paul</div><div><br></div><div><div>********************************************</div>

<div>        FAILURE REPORT:</div><div>********************************************</div><div><br></div><div>ld: warning: directory not found for option '-L/Users/plaplant/Documents/school/grad/Second_Year/Spring_13/yt-x86_64/lib64/'</div>

<div>ld: library not found for -lgomp</div><div>clang: error: linker command failed with exit code 1 (use -v to see invocation)</div><div>ld: warning: directory not found for option '-L/Users/plaplant/Documents/school/grad/Second_Year/Spring_13/yt-x86_64/lib64/'</div>

<div>ld: warning: directory not found for option '-L/Users/plaplant/Documents/school/grad/Second_Year/Spring_13/yt-x86_64/lib64/'</div><div>ld: warning: directory not found for option '-L/Users/plaplant/Documents/school/grad/Second_Year/Spring_13/yt-x86_64/lib64/'</div>

<div>ld: warning: directory not found for option '-L/Users/plaplant/Documents/school/grad/Second_Year/Spring_13/yt-x86_64/lib64/'</div><div>ld: library not found for -lgomp</div><div>clang: error: linker command failed with exit code 1 (use -v to see invocation)</div>

<div>error: Command "/usr/bin/clang -bundle -undefined dynamic_lookup -L/Users/plaplant/Documents/school/grad/Second_Year/Spring_13/yt-x86_64/lib/ -L/Users/plaplant/Documents/school/grad/Second_Year/Spring_13/yt-x86_64/lib64/ -L/Users/plaplant/Documents/school/grad/Second_Year/Spring_13/yt-x86_64/lib/ -L/Users/plaplant/Documents/school/grad/Second_Year/Spring_13/yt-x86_64/lib64/ -L/Users/plaplant/Documents/school/grad/Second_Year/Spring_13/yt-x86_64/lib/ -L/Users/plaplant/Documents/school/grad/Second_Year/Spring_13/yt-x86_64/lib64/ -L/Users/plaplant/Documents/school/grad/Second_Year/Spring_13/yt-x86_64/lib/ -L/Users/plaplant/Documents/school/grad/Second_Year/Spring_13/yt-x86_64/lib64/ -mmacosx-version-min=10.7 build/temp.macosx-10.4-x86_64-2.7/yt/utilities/lib/geometry_utils.o -lm -o yt/utilities/lib/geometry_utils.so -fopenmp" failed with exit status 1</div>

<div><br></div><div>********************************************</div><div>********************************************</div><div><br></div><div><div>On May 21, 2013, at 12:57 PM, Chris Malone <<a href="mailto:chris.m.malone@gmail.com" target="_blank">chris.m.malone@gmail.com</a>> wrote:</div>

<br><blockquote type="cite"><div dir="ltr">Just a comment:<div><br></div><div>Using the full path to the compilers (e.g. using /usr/bin/gcc instead of gcc) will fail because of a sed command (line 329 in install_script.sh) using the forward slash as a separator.  If the compilers are in your bath, you might want to specify them directly by name, rather than the full pathname.</div>


<div><br></div><div>The install script should probably be changed to use something other than forward slash as the delimiter, at least in this case where it might get mangled with pathnames.  Something like changing </div>


<div><br></div><div>... -e "s/CC=gcc/CC=${CC}/ ...</div><div><br></div><div>to</div><div><br></div><div>... -e "s|CC=gcc|CC=${CC}| ...</div><div><br></div><div>Chris</div>
</div><div class="gmail_extra"><br><br><div class="gmail_quote">On Tue, May 21, 2013 at 7:58 AM, Britton Smith <span dir="ltr"><<a href="mailto:brittonsmith@gmail.com" target="_blank">brittonsmith@gmail.com</a>></span> wrote:<br>


<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div><div><div><div><div>Hi Paul,<br><br></div><div>Welcome to yt!<br><br></div>We have had a number of problems in the past using gnu compilers that are not the ones installed with xcode.  I recommend you try again with those compilers.  To do that, you should be able to just do:<br>



</div>export CC=/usr/bin/gcc<br></div>export CXX=/usr/bin/g++<br><br></div>Please, let us know if that doesn't work.  Also, if it doesn't, please just send us the last 10 or 20 lines of the output log from the install script.  That should be enough to diagnose the problem.<br>



<br></div>Britton<br></div><div class="gmail_extra"><br><br><div class="gmail_quote"><div><div>On Tue, May 21, 2013 at 10:19 AM, Paul La Plante <span dir="ltr"><<a href="mailto:plaplant@andrew.cmu.edu" target="_blank">plaplant@andrew.cmu.edu</a>></span> wrote:<br>



</div></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div>Hi,<br>
<br>
I am having trouble installing yt on my personal machine using the install script. I downloaded the script from the suggested website (<a href="http://hg.yt-project.org/yt/raw/stable/doc/install_script.sh" target="_blank">http://hg.yt-project.org/yt/raw/stable/doc/install_script.sh</a>) and attempted to execute it with `bash install_script.sh.' I have tried a few different combinations of install options, but it always seems to fail while building matplotlib. My system is OS X 10.8.3, and gcc version 4.8.0 (installed from MacPorts). I have attached my yt_install.log.<br>




<br>
Thanks in advance for any help!<br>
<br>
Best regards,<br>
Paul<br>
<br>
<br></div></div>_______________________________________________<br>
yt-users mailing list<br>
<a href="mailto:yt-users@lists.spacepope.org" target="_blank">yt-users@lists.spacepope.org</a><br>
<a href="http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org" target="_blank">http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org</a><br>
<br></blockquote></div><br></div>
<br>_______________________________________________<br>
yt-users mailing list<br>
<a href="mailto:yt-users@lists.spacepope.org" target="_blank">yt-users@lists.spacepope.org</a><br>
<a href="http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org" target="_blank">http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org</a><br>
<br></blockquote></div><br></div>
_______________________________________________<br>yt-users mailing list<br><a href="mailto:yt-users@lists.spacepope.org" target="_blank">yt-users@lists.spacepope.org</a><br><a href="http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org" target="_blank">http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org</a><br>

</blockquote></div><br></div></div>_______________________________________________<br>yt-users mailing list<br><a href="mailto:yt-users@lists.spacepope.org" target="_blank">yt-users@lists.spacepope.org</a><br><a href="http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org" target="_blank">http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org</a><br>

</blockquote></div><br></div>_______________________________________________<br>yt-users mailing list<br><a href="mailto:yt-users@lists.spacepope.org" target="_blank">yt-users@lists.spacepope.org</a><br><a href="http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org" target="_blank">http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org</a><br>

</blockquote></div><br></div></div></div></div></div><br>_______________________________________________<br>
yt-users mailing list<br>
<a href="mailto:yt-users@lists.spacepope.org">yt-users@lists.spacepope.org</a><br>
<a href="http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org" target="_blank">http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org</a><br>
<br></blockquote></div><br></div>