Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
29274 Discussions

Problem with ifort 10.1.018 and Libux Ubuntu 8.04

sergio82
Beginner
975 Views

Hello!

I'm having some problem installing the Intel fortran Compiler 10.1.018 and my Linux Ubuntu 8.04

After unpack the compiler package I executed the install script in the directory where the tar file was extracted, I give the path for the licese file but after that I have this out:

Installation package for IA-32 and Intel 64.
Checking Dependencies ...
Checking operating system requirements ................................
Detected operating system Debian* (generic) is not supported.

Checking Kernel and glibc dependencies ...

Your platform :
architecture = x86_64
kernel = 2.6.24-21-generic
glibc = /lib/libc-2.7.so
operating system = Debian* (generic)

This product is supported for use with the following combinations :

Machine Type Kernel glibc

Intel 64 2.4.21 2.3.2
Intel 64 2.6.x. 2.3.x
Intel 64 2.6.x. 2.4.x
Intel 64 2.6.x. 2.5.x
Intel 64 2.6.x. 2.6.x

Would you like to perform an unsupported install of this product [yes/no] (no) ? :

I perform the unsupported installation anyway with the typicall components,

the installation for the compiler both for IA-32, Intel 64, for the dubegger for Intel 64 are done without problem, while the installation for the debugger for IA-32 give this warning:

--- WARNING ---
The IA-32 version of the debugger is being installed on an Intel 64 system.
This version of the debugger will not work on the Intel 64 system.
It is being installed here only for access by IA-32 systems.
(But I think this is not a problem since I have a Intel 64 processor.

After the installation following the Installation guide and some discussion in the the thenical support forum I tried to set my environment for ifort writing in a terminal:

source /opt/intel/fce/10.1.018/bin/ifortvars.sh

After that (as suggested form a discussion in this forum) I typed:

ifort helloworld.f90

and this is the out:

fortcom: Severe: No such file or directory
... file is 'helloworld.f90'
compilation aborted for helloworld.f90 (code 1)

So it seems the ifort command is not recognized...

Can you help me please...

Thanks a lot!

Sergio

0 Kudos
6 Replies
TimP
Honored Contributor III
975 Views

No, it says the file helloworld.f90 is not present in the current directory. ifort appears to be found OK.

0 Kudos
sergio82
Beginner
975 Views
Quoting - tim18

No, it says the file helloworld.f90 is not present in the current directory. ifort appears to be found OK.

Ok, Thank you.

But now I'm having another problem,When I have to lunch a program I have this output:

"error while loading shared libraries: libguide.so: cannot open shared object file: No such file or directory"

I looked for the file "libguide.so" and I found it in the directory: "/opt/intel/fce/10.1.018/lib".

I added this path in my ~/.bashrc file writing:

export PATH=/opt/intel/fce/10.1.018/lib:$PATH

I tried to lunch again the program but I'm having the same problem

What do you think it could be?

Thanks a lot!

Sergio

0 Kudos
TimP
Honored Contributor III
975 Views

The shared libraries of the ifort installation are found by the LD_LIBRARY_PATH set by running one of the ifortvars scripts in the ifort installation.

0 Kudos
sergio82
Beginner
975 Views
Quoting - tim18

The shared libraries of the ifort installation are found by the LD_LIBRARY_PATH set by running one of the ifortvars scripts in the ifort installation.

Ok, so what can I do?

0 Kudos
af123_af007
Beginner
975 Views
Quoting - sergio82

Ok, so what can I do?

Set theLD_LIBRARY_PATH. You can also add the line source /opt/intel//icc/bin/icvars.sh to /etc/bashrc.

0 Kudos
lvjw
Beginner
975 Views
Quoting - tim18

No, it says the file helloworld.f90 is not present in the current directory. ifort appears to be found OK.

I'm stillnot very clear about it.Could you pleaseexplain me some more details? Thank you!

0 Kudos
Reply