<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic ifort lapack eclipse in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/ifort-lapack-eclipse/m-p/753814#M9433</link>
    <description>hi,&lt;DIV&gt;thanks a lot.&lt;/DIV&gt;&lt;DIV&gt;you are right.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;In eclipse I have put in the linker all the library that I use in the compilare:&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;-llapack95 ecc...&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;</description>
    <pubDate>Mon, 21 Mar 2011 12:11:21 GMT</pubDate>
    <dc:creator>diedro</dc:creator>
    <dc:date>2011-03-21T12:11:21Z</dc:date>
    <item>
      <title>ifort lapack eclipse</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/ifort-lapack-eclipse/m-p/753805#M9424</link>
      <description>hi every one,&lt;DIV&gt;I would like to use the lapack library with my intel project in eclipse.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;my source code is:&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV id="_mcePaste"&gt;PROGRAM testLapack_CGEEV&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;USE COMUNI&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;use mkl95_lapack&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;IMPLICIT NONE&lt;/DIV&gt;.....&lt;/DIV&gt;&lt;DIV&gt;.....&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;but I have the following error:&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;Invoking: Intel Intel 64 Fortran Compiler&lt;/DIV&gt;&lt;DIV&gt;ifort -g -O0 -c -o "testLapack_CGEEV.o" "../testLapack_CGEEV.f90"&lt;/DIV&gt;&lt;DIV&gt;../testLapack_CGEEV.f90(3): error #7002: Error in opening the compiled module file. Check INCLUDE paths.  [MKL95_LAPACK]&lt;/DIV&gt;&lt;DIV&gt;use mkl95_lapack&lt;/DIV&gt;&lt;DIV&gt;----^&lt;/DIV&gt;&lt;DIV&gt;compilation aborted for ../testLapack_CGEEV.f90 (code 1)&lt;/DIV&gt;&lt;DIV&gt;make: *** [testLapack_CGEEV.o] Error 1&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;I do not understand why. All the librarymkl seem included in the project wiew.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;thanks a lot&lt;/DIV&gt;&lt;META content="text/html; charset=utf-8" http-equiv="content-type" /&gt;</description>
      <pubDate>Wed, 16 Mar 2011 13:51:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/ifort-lapack-eclipse/m-p/753805#M9424</guid>
      <dc:creator>diedro</dc:creator>
      <dc:date>2011-03-16T13:51:23Z</dc:date>
    </item>
    <item>
      <title>ifort lapack eclipse</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/ifort-lapack-eclipse/m-p/753806#M9425</link>
      <description>I'm not familiar with the Eclipse environment, but you need to make sure that the appropriate MKL Include folder is provided to the compiler as an additional INCLUDE directory (-I). This is the folder where you will find mkl95_lapack.mod.</description>
      <pubDate>Wed, 16 Mar 2011 14:03:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/ifort-lapack-eclipse/m-p/753806#M9425</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2011-03-16T14:03:44Z</dc:date>
    </item>
    <item>
      <title>ifort lapack eclipse</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/ifort-lapack-eclipse/m-p/753807#M9426</link>
      <description>Since you did not mention whether you are using the current version of MKL, this may be worth looking at:&lt;BR /&gt;&lt;BR /&gt;Older versions of MKL came with source files and a makefile to build Lapack95 and Blas95; you had to build the modules and libraries, and install the resulting files in appropriate places. &lt;BR /&gt;&lt;BR /&gt;Pre-built modules and libraries were also provided in later versions of MKL.&lt;BR /&gt;&lt;BR /&gt;With any version of MKL, you need to ask the linker to include the lapack95 and/or blas95 libraries.</description>
      <pubDate>Wed, 16 Mar 2011 14:09:35 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/ifort-lapack-eclipse/m-p/753807#M9426</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2011-03-16T14:09:35Z</dc:date>
    </item>
    <item>
      <title>ifort lapack eclipse</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/ifort-lapack-eclipse/m-p/753808#M9427</link>
      <description>hi,&lt;DIV&gt;thank for your reply.&lt;/DIV&gt;&lt;DIV&gt;I am using the new version ak MKL&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;how can I ask the linker to includeapack95 and/or blas95&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;because I have putlapack95.mod in my folder and the program seems to compile. I have still the problem with some variables.&lt;/DIV&gt;&lt;DIV&gt;I would like to do in a more general way&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;thanks&lt;/DIV&gt;</description>
      <pubDate>Wed, 16 Mar 2011 14:58:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/ifort-lapack-eclipse/m-p/753808#M9427</guid>
      <dc:creator>diedro</dc:creator>
      <dc:date>2011-03-16T14:58:41Z</dc:date>
    </item>
    <item>
      <title>ifort lapack eclipse</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/ifort-lapack-eclipse/m-p/753809#M9428</link>
      <description>hi,&lt;DIV&gt;thank for your reply.&lt;/DIV&gt;&lt;DIV&gt;I am using the new version ak MKL&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;how can I ask the linker to includeapack95 and/or blas95&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;because I have putlapack95.mod in my folder and the program seems to compile. I have still the problem with some variables.&lt;/DIV&gt;&lt;DIV&gt;I would like to do in a more general way&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;thanks&lt;/DIV&gt;</description>
      <pubDate>Wed, 16 Mar 2011 14:58:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/ifort-lapack-eclipse/m-p/753809#M9428</guid>
      <dc:creator>diedro</dc:creator>
      <dc:date>2011-03-16T14:58:47Z</dc:date>
    </item>
    <item>
      <title>ifort lapack eclipse</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/ifort-lapack-eclipse/m-p/753810#M9429</link>
      <description>Copying the .mod is not the best solution. Instead you should, as I mentioned, add the MKL includes folder to the compiler include path.&lt;BR /&gt;&lt;BR /&gt;MKL offers a &lt;A href="http://software.intel.com/en-us/articles/intel-mkl-link-line-advisor/"&gt;link advisor tool &lt;/A&gt;which can help you select the libraries you should reference in your build.</description>
      <pubDate>Wed, 16 Mar 2011 15:20:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/ifort-lapack-eclipse/m-p/753810#M9429</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2011-03-16T15:20:37Z</dc:date>
    </item>
    <item>
      <title>ifort lapack eclipse</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/ifort-lapack-eclipse/m-p/753811#M9430</link>
      <description>hi,&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;you are right moreover it does not work&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;I have changed my path with:&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;PRE&gt;[bash]PATH="/opt/intel/compilerpro-12.0.0.084/bin/intel64$PATH"
source /opt/intel/compilerpro-12.0.0.084/bin/ifortvars.sh intel64
export LD_LIBRARY_PATH=/opt/intel/compilerpro-12.0.0.084/debugger/lib/intel64:$LD_LIBRARY_PATH
export PATH
LD_LIBRARY_PATH="/opt/intel/lib:$LD_LIBRARY_PATH"
export LD_LIBRARY_PATH[/bash]&lt;/PRE&gt; &lt;/DIV&gt;&lt;DIV&gt;and if I run a preogram test it works&lt;/DIV&gt;&lt;DIV&gt;&lt;PRE&gt;[bash]ifort --llpack test.f90[/bash]&lt;/PRE&gt; &lt;/DIV&gt;&lt;DIV&gt;Can I do the same with mlk&lt;/DIV&gt;&lt;DIV&gt;for example ifort -mlk&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;because I am not able to use &lt;A href="http://software.intel.com/en-us/articles/intel-mkl-link-line-advisor/"&gt;link advisor tool&lt;/A&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;thanks a lot.&lt;/DIV&gt;</description>
      <pubDate>Wed, 16 Mar 2011 20:27:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/ifort-lapack-eclipse/m-p/753811#M9430</guid>
      <dc:creator>diedro</dc:creator>
      <dc:date>2011-03-16T20:27:39Z</dc:date>
    </item>
    <item>
      <title>ifort lapack eclipse</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/ifort-lapack-eclipse/m-p/753812#M9431</link>
      <description>You are not changing the path that the linker uses for locating libraries. Using -mkl will cause specific sets of MKL libraries to be linked in, and if you have your environment set up properly, it will find the MKL libraries. I can't comment on how this would be done from Eclipse.&lt;BR /&gt;&lt;BR /&gt;If you need more help on using MKL, please ask in our MKL forum section.</description>
      <pubDate>Thu, 17 Mar 2011 17:38:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/ifort-lapack-eclipse/m-p/753812#M9431</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2011-03-17T17:38:48Z</dc:date>
    </item>
    <item>
      <title>ifort lapack eclipse</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/ifort-lapack-eclipse/m-p/753813#M9432</link>
      <description>In Photran, the Intel Fortran tool chain is represented as two steps, a compile step and a link step. If you add '-mkl' to your compile step in the 'Command Line' -&amp;gt; 'Additional options' property, you also need to add it on the link step in the same category/property. Both the Intel Fortran Compile step and Intel Fortran Link stepinvoke the ifort driver, but setting an additional command line option on the compile stepdoes not automatically cause the option to be passed to the link step.&lt;BR /&gt;&lt;BR /&gt;Hope that helps...Bill&lt;BR /&gt;</description>
      <pubDate>Sat, 19 Mar 2011 00:47:34 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/ifort-lapack-eclipse/m-p/753813#M9432</guid>
      <dc:creator>William_H_Intel3</dc:creator>
      <dc:date>2011-03-19T00:47:34Z</dc:date>
    </item>
    <item>
      <title>ifort lapack eclipse</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/ifort-lapack-eclipse/m-p/753814#M9433</link>
      <description>hi,&lt;DIV&gt;thanks a lot.&lt;/DIV&gt;&lt;DIV&gt;you are right.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;In eclipse I have put in the linker all the library that I use in the compilare:&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;-llapack95 ecc...&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 21 Mar 2011 12:11:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/ifort-lapack-eclipse/m-p/753814#M9433</guid>
      <dc:creator>diedro</dc:creator>
      <dc:date>2011-03-21T12:11:21Z</dc:date>
    </item>
  </channel>
</rss>

