Re: fortran programs with big RAM requirement



Hi hyperion ,
I wonder if you are facing the same problem that
I did.
I was able to solve my problem by linking to the correct libdl library
which was /lib64/libdl-2.3.2.so
in my case on a similar opteron cluster. I was able to compile your
code and get some output

[bthakur@lowdin tmp_test]$ locate libdl| grep 64
/export/usr/lib64/libdl_p.a
/export/usr/lib64/libdl.a
/lib64/libdl-2.3.2.so
/lib64/libdl.so.2
[bthakur@lowdin tmp_test]$ ifort -traceback -check all -g -i-dynamic
-ldl-2.3.2 tst.f90
[bthakur@lowdin tmp_test]$ ./a.out
0.5345634
0.5345634
0.5345634
0.5345634
0.5345634
0.5345634
0.5345634
0.5345634
0.5345634
0.5345634
[bthakur@lowdin tmp_test]$

Hope it helps you,
Regards,
Bhupender

.



Relevant Pages

  • Re: Managing the JIT
    ... decide what to jit, as in do you just jit function by function, or a ... in the case of my assembler and linker, I am currently using COFF between ... when linking code into, it allocates ... I usually compile code a "module" at a time. ...
    (comp.compilers)
  • Re: Links2 in graphics mode in X?
    ... the linking process with runtime shared libraries, ... so you need to go get libpng.a and libpng.so (depending ... de-modernizing C++ codes, or de-ansi99ing C codes. ... impossible to compile without linking against something, ...
    (comp.os.linux.misc)
  • Re: REPOST: extremely long link times
    ... and it's linking that's the problem - compiling's generally very ... somebodies old code that had ALOT of this stuff, and to compile it took ... only 1 OBJ will be recreated. ... This does leave me with a lot of Test projects all over the place, ...
    (microsoft.public.dotnet.languages.vc)
  • Re: Cocoa Newbie Question.
    ... is not something that you will want to compile .m files with. ... I also guess that you are not using Xcode. ... Objective-C code. ... because linking not done ...
    (comp.sys.mac.programmer.help)
  • Re: static building with mingw ?
    ... tried to compile some of my Tcl extensions with MinGW. ... possible to do linking without other dev. ... This command-line ... Notice the usage of the DLL at the end of the command. ...
    (comp.lang.tcl)

Loading