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

installation intel64 fortran on debian 4 etch

kre_nguessan
Beginner
2,121 Views
I can not installing fortran l_fc_p_10.1.015_intel64.tar.gz on my
computer. the OS is debian 4 etch. When I run ./install.sh then system display :
proceeding as a root user...
secore.new: ChannelMessage.cpp:134: int CChannelMessage::Init(const CEasyString&): Assertion `configNode != __null' failed.
./install.sh: line 346: 7260 Abandon $install_prog $@

Please help me.
0 Kudos
12 Replies
Ron_Green
Moderator
2,121 Views
See the "Hot Tips" section,

http://software.intel.com/en-us/forums//topic/58435

there are tips for Ubuntu 7.10 and 8.04 which are equally applicable to Debian. You need to make sure you have g++, gcc, and libstdc++.so.5 configured before you install.

let us know if this helps.

ron
0 Kudos
kre_nguessan
Beginner
2,121 Views
Thank you for your reponse. I read read the 'Ho Tip' section and I install g++, gcc, and libstdc++.so.5. When I type ldd chklic.em64t I ahve this:

linux-gate.so.1 => (0xffffe000)
libpthread.so.0 => /lib32/libpthread.so.0 (0xf7fb8000)
libm.so.6 => /lib32/libm.so.6 (0xf7f94000)
libgcc_s.so.1 => /usr/lib32/libgcc_s.so.1 (0xf7f89000)
libc.so.6 => /lib32/libc.so.6 (0xf7e5d000)
libdl.so.2 => /lib32/libdl.so.2 (0xf7e59000)
/lib/ld-linux.so.2 (0xf7fdf000)

I don't know what I have to do

KRE

0 Kudos
Ron_Green
Moderator
2,121 Views
KRE,

There was a similar issue from one customer last November. What version of gcc/cpp do you have? is it 4.1.1? If so, try to upgrade to at least 4.2.1 - this fixed the problem with the other user.

Also, what locale are you using and is it non-English? What is the output of:

locale

As another workaround, try this:

1. First, please ensure that your most recent license for your serial number is available on your system under /opt/intel/licenses. You get your license by registering your serial number at https://registrationcenter.intel.com

2. Next, try installing using the following command:

./data/install_fc.sh --run
(This command assumes your working directory is the directory where you expanded the compiler's tar.gz file)


ron
0 Kudos
kre_nguessan
Beginner
2,121 Views
Ron,

Thank you very much. the locale result is french (fr_FR.UTF-8). I try the commande ./data/install_fc.sh --run and I could install finally. It run very well.

Thank You

KRE

0 Kudos
Ron_Green
Moderator
2,121 Views
one last question, if I may: Was your gcc at version 4.1.1?

This is important for us to understand and fix this problem.

thank you, and I am glad I could help.

ron
0 Kudos
kre_nguessan
Beginner
2,121 Views
When I type gcc --version The system display:
gcc (GCC) 4.1.2 20061115 (prerelease) (Debian 4.1.1-21)
Copyright (C) 2006 Free Software Foundation, Inc.

0 Kudos
kre_nguessan
Beginner
2,121 Views
Hi,

I hava an another problem. When I compile my program whith or without the option -O2 the system dysplay: remark: LOOP WAS VECTORIZED.. Do you help me.

Thank you

Kre


0 Kudos
Bonnie_A_Intel
Employee
2,121 Views
"Loop was vectorized" is an informational message that indicates a loop found in your code was able to be optimized via vectorization, which improves the performance of your application. So this is a good message.
0 Kudos
kre_nguessan
Beginner
2,121 Views
Hello,
Thank you for the response.
KRE
0 Kudos
Bonnie_A_Intel
Employee
2,121 Views

You are probably wondering why you are getting vectorization without using a O option to set an optimization level. By default, the optimizaiton level with our compilers is -O2, which includes vectorization.

If you are on an Intel processor-based Mac OS* X system, vectorization is always on by default.

0 Kudos
sun_r_
Beginner
2,121 Views

how can i get the l_fc_p_10.1.015_intel64.tar.gz?

0 Kudos
TimP
Honored Contributor III
2,121 Views
https://software.intel.com/en-us/articles/older-version-product https://software.intel.com/en-us/articles/which-older-compiler-versions-are-available-on-intel-registration-center As the earlier replies indicate, ifort 10.1 would require a g++ 4.4 installation. Such an old compiler would not be suitable for a more up to date linux installation, particularly since icc 12 and newer should recognize the peculiar non-lsb organization of Debian and Ubuntu, which are particularly strange in the x86_64 variants.
0 Kudos
Reply