Intel® oneAPI Math Kernel Library
Ask questions and share information with other developers who use Intel® Math Kernel Library.

why ifort cant find files which exist.

guayigou
Beginner
1,021 Views
it may be errors from link.i dont understand the cause.Factly,the files reported exist in the correct folder.
why?
thanks.

the report to errors:

ifort: error #10236: File not found: '/opt/intel/Compiler/11.0/059/mkl/lib/em64t/libmkl_blacs95_lp64.a'
ifort: error #10236: File not found: '/opt/intel/Compiler/11.0/059/mkl/lib/em64t/libmkl_solver_lp64.a'
ifort: error #10236: File not found: '/opt/intel/Compiler/11.0/059/mkl/lib/em64t/libmkl_lapack95_lp64.a'
ifort: error #10236: File not found: '/opt/intel/Compiler/11.0/059/mkl/lib/em64t/libmkl_intel_lp64.a'
ifort: error #10236: File not found: '/opt/intel/Compiler/11.0/059/mkl/../lib/intel64/libguide.a'
make: *** [driver] error 1


0 Kudos
1 Solution
TimP
Honored Contributor III
1,021 Views


2 before linking the application please use mklvarsem64t.sh script (/tools/environment/) to set all libraries and compilers environment variables

Into your shell....


source /opt/intel/Compiler/11.0/059/bin/ifortvars.sh intel64 (.csh if running tcsh) sets the mklvars as well as the ifort environment. The MKL libraries are an optional part of the ifort install script.
You may have to find the make command to set up lapack95 inside the ifort mkl installation directory, if that is not an automatic part of the installation of your ifort version.

View solution in original post

0 Kudos
3 Replies
Gennady_F_Intel
Moderator
1,021 Views
Quoting - guayigou
it may be errors from link.i dont understand the cause.Factly,the files reported exist in the correct folder.
why?
thanks.

the report to errors:

ifort: error #10236: File not found: '/opt/intel/Compiler/11.0/059/mkl/lib/em64t/libmkl_blacs95_lp64.a'
ifort: error #10236: File not found: '/opt/intel/Compiler/11.0/059/mkl/lib/em64t/libmkl_solver_lp64.a'
ifort: error #10236: File not found: '/opt/intel/Compiler/11.0/059/mkl/lib/em64t/libmkl_lapack95_lp64.a'
ifort: error #10236: File not found: '/opt/intel/Compiler/11.0/059/mkl/lib/em64t/libmkl_intel_lp64.a'
ifort: error #10236: File not found: '/opt/intel/Compiler/11.0/059/mkl/../lib/intel64/libguide.a'
make: *** [driver] error 1




Guayigou

1 - you would likely need to consult the link advisor on the right side of the forum header page

2 before linking the application please use mklvarsem64t.sh script (/tools/environment/) to set all libraries and compilers environment variables

Into your shell....


0 Kudos
TimP
Honored Contributor III
1,022 Views


2 before linking the application please use mklvarsem64t.sh script (/tools/environment/) to set all libraries and compilers environment variables

Into your shell....


source /opt/intel/Compiler/11.0/059/bin/ifortvars.sh intel64 (.csh if running tcsh) sets the mklvars as well as the ifort environment. The MKL libraries are an optional part of the ifort install script.
You may have to find the make command to set up lapack95 inside the ifort mkl installation directory, if that is not an automatic part of the installation of your ifort version.
0 Kudos
guayigou
Beginner
1,021 Views
Quoting - tim18
source /opt/intel/Compiler/11.0/059/bin/ifortvars.sh intel64 (.csh if running tcsh) sets the mklvars as well as the ifort environment. The MKL libraries are an optional part of the ifort install script.
You may have to find the make command to set up lapack95 inside the ifort mkl installation directory, if that is not an automatic part of the installation of your ifort version.

Thank you very much.
0 Kudos
Reply