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

ifort: error #10310: Failed to enable trusted storage check for licensing: WARNING: Enable Trusted Storage failed

genaganna
Beginner
804 Views
I am getting following error after installing(Evalution ) intel Fortran 11.1.046 for linux.


could any body help me to resolve the issue.

Operating System : OpenSUSE 10.3 X86_64

What i have done:

1. ./install.sh
2. Moved to /bin/
3. typed ./ifortvars.sh ia32 (nothing was displayed on command line)
4. Typed ifort at command line (bash: ifort : command not found)
5. Moved to bin/ia32 and typed ifort(getting above error)

0 Kudos
2 Replies
TimP
Honored Contributor III
804 Views
Quoting - genaganna
I am getting following error after installing(Evalution ) intel Fortran 11.1.046 for linux.


could any body help me to resolve the issue.

Operating System : OpenSUSE 10.3 X86_64

What i have done:

1. ./install.sh
2. Moved to /bin/
3. typed ./ifortvars.sh ia32 (nothing was displayed on command line)
4. Typed ifort at command line (bash: ifort : command not found)
5. Moved to bin/ia32 and typed ifort(getting above error)

3. The command is 'source /bin/ifortvars.sh' In bash, . is a synonym for source but must be followed by a space.
5. Apparently, you have SElinux or the like active, so it wants to prevent inadvisable/unauthorized modification of the compiler installation directory. You shouldn't do that anyway, you must run the compiler in a build directory belonging to you.
0 Kudos
genaganna
Beginner
804 Views
Quoting - tim18
3. The command is 'source /bin/ifortvars.sh' In bash, . is a synonym for source but must be followed by a space.
5. Apparently, you have SElinux or the like active, so it wants to prevent inadvisable/unauthorized modification of the compiler installation directory. You shouldn't do that anyway, you must run the compiler in a build directory belonging to you.

Thanks a lot.

Now i am able to run samples
0 Kudos
Reply