On Jan 3, 2013, at 11:50 PM, walter kou <[email protected]> wrote:

> Hi all,
> But when I try to run gmsh: ./gmsh,  I get error on missing libraries. And
> after using command: ldd gmsh, I find missing libraries:
>    libgmp.so.3 => not found
>    libgfortran.so.3 => not found
> My computer: fedora 17 x86_64; and actually if I type: locate
> libgfortran.so.3,  I find I have libgfortran.so.3:
>     /usr/lib64/libgfortran.so.3
> 
> Strange, do you guys encounter similar problem?
> Thanks,
> Walter


This does not look like a libMesh problem, but something is awry with your 
LD_LIBRARY_PATH perhaps?

try

$ export LD_LIBRARY_PATH=/usr/lib64:$LD_LIBRARY_PATH

(under bash), or

$ setenv  LD_LIBRARY_PATH /usr/lib64:$LD_LIBRARY_PATH

(under a lesser shell)

and then what does

$ ldd `which gmsh`

Although I'd expect /usr/lib64 to get searched by default!

-Ben




------------------------------------------------------------------------------
Master HTML5, CSS3, ASP.NET, MVC, AJAX, Knockout.js, Web API and
much more. Get web development skills now with LearnDevNow -
350+ hours of step-by-step video tutorials by Microsoft MVPs and experts.
SALE $99.99 this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122812
_______________________________________________
Libmesh-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/libmesh-users

Reply via email to