<?xml version="1.0" encoding="UTF-8"?>
<!-- Generated on Sun, 12 Feb 2012 05:17:08 -0800 -->
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <atom:link href="http://software.intel.com/en-us/articles/intel-fortran-compiler-for-linux-kb/type/installation/feed/" rel="self" type="application/rss+xml" />
    <title>Intel Software Network articles Feed</title>
    <link>http://software.intel.com/en-us/articles/intel-fortran-compiler-for-linux-kb/type/installation/</link>
    <description></description>
    <language>en-us</language>
    <item>
      <title>Intel Compilers for Linux and Mac OS X Compiler Installation Help</title>
      <description><![CDATA[ The following articles help with installation of the Intel compilers on Linux.<br /><br />BEFORE you try to install the Intel compilers on a Linux host, please make sure your Linux installation has the prerequisities for the compilers.  <br />Also, determine your needs and get the right installation tarball.  Most linux users are on 64bit systems with x86_64 versions of linux installed.  Do you need to create older 32bit applications?  If not, download the Intel 64 ONLY tarball, the *_intel64.tgz file.  Not only does this save download time, this will eliminate your need to install 32bit libraries on the development system.<br /><br /> The distribution-specific requirements are listed and hyperlinked below:<br /><br /> 
<ul>
<li><a href="http://software.intel.com/en-us/articles/using-intel-compilers-for-linux-with-ubuntu/">Ubuntu or Debian Installation Prerequisites</a></li>
<li><a href="http://software.intel.com/en-us/articles/using-intel-compilers-for-linux-under-redhat-enterprise-linux/">Redhat or CentOS Installation Prerequisites</a></li>
<li><a href="http://software.intel.com/en-us/articles/installing-intel-compilers-on-opensuse/">OpenSUSE or SLES/SLED Installation Prerequisites</a></li>
<li><a href="http://software.intel.com/en-us/articles/using-intelr-compilers-for-linux-under-fedora/">Fedora Core Installation Prerequisites</a></li>
</ul>
<div>Other distributions not listed here should follow the guidelines of the closest mainstream distribution documented above.<br /><span ><br /></span></div>
<div><span >Mac OS X:  Prerequisite for installation of Intel Compilers for Mac OS X is that you have installed a supported version of Xcode on your system.  See your Release Notes document for supported Xcode versions for your compiler version.  Xcode is provided by Apple on either your Mac OS X installation DVD or online at <a href="http://developer.apple.com" >http://developer.apple.com</a></span></div>
<div><a href="http://developer.apple.com" ></a><span ><br /></span>Once these prerequisites are satisfied, launch the Intel installer 'install.sh' in the compiler package directory and follow the prompts.</div>
<div><br /></div>
<div><b><span ><br /></span></b></div>
<div><b><span >"Silent" or command line installation without user prompts:</span></b></div>
<div><br /></div>
<div>
<ul>
<li><span ><a href="http://software.intel.com/en-us/articles/intel-compilers-for-linux-version-111-silent-installation-guide/">Intel Compilers versions 11.1 and 12.0 (Composer XE 2011) for Linux Silent Installation Guide: http://software.intel.com/en-us/articles/intel-compilers-for-linux-version-111-silent-installation-guide/</a></span></li>
<li><a href="http://software.intel.com/en-us/articles/intel-compilers-for-linux-silent-installation-guide/">Intel Compiler Pro 11.0 and 10.1 for Linux Silent Installation Guide: http://software.intel.com/en-us/articles/intel-compilers-for-linux-silent-installation-guide/</a></li>
<li><span >I<a href="http://software.intel.com/en-us/articles/intel-compilers-for-mac-os-x-silent-installation-guide/">ntel Compilers for Mac OS X Silent Installation Guide: http://software.intel.com/en-us/articles/intel-compilers-for-mac-os-x-silent-installation-guide/</a></span></li>
</ul>
</div>
<div><b><span ><br /></span></b></div>
<div><b><span >User Forum Help</span></b></div>
<div><br /></div>
<div>Startup Support User Forum, for help with download, licensing, and installation of all Intel Software Products on all platforms:  <a href="http://software.intel.com/en-us/forums/intel-software-development-products-download-registration-licensing/">http://software.intel.com/en-us/forums/intel-software-development-products-download-registration-licensing/</a></div>
<div><br /></div>
<div><br /></div> ]]></description>
      <link>http://software.intel.com/en-us/articles/intel-compilers-linux-installation-help/</link>
      <pubDate>Mon, 14 Feb 2011 23:00:00 -0800</pubDate>
      <comments>http://software.intel.com/en-us/articles/intel-compilers-linux-installation-help/#comments</comments>
      <guid isPermaLink="true">http://software.intel.com/en-us/articles/intel-compilers-linux-installation-help/</guid>
      <category>Intel® C++ Compiler for Linux* Knowledge Base</category>
      <category>Intel® Fortran Compiler for Linux* Knowledge Base</category>
    </item>
    <item>
      <title>Error:  ld: cannot find -lm</title>
      <description><![CDATA[ <br />
<div id="art_pre_template"><b>Problem : </b>compiling with -fast or -static causes a linker error "ld: cannot find -lm"<br /><br /><br /><b>Environment : Redhat Enterprise Linux 6, Fedora Core 11, 12, 13, other linux distros possible</b><br /><br /><br /><b>Root Cause :  RHEL 6, FC12 and 13 do not ship with static versions of glibc.  Thus, there is no static version of libm to link by default</b>.  (the linux community is trying to discourage static linking and move the community to a dynamic linking model.  Thus, recent linux distros are not shipping/installing glibc-static by default.)<br /><br /><br /><b>Resolution : </b><br /><br />If you want to link statically, that is with -static or -fast (which  contains -static), you will need the static versions of glibc.  Keep in  mind that static linking is being discouraged by the larger linux  community.  You may, of course, use -static-intel to statically link the  Intel libraries.  However, if you want to also statically link the  system libraries in glibc you will need the static versions of glibc.<br /><br />Install the static version of glibc.  Research your distribution for the appropriate package to install.  For example, for RHEL 6 and FC12 and FC13:<br /><br />x86_64:<br />yum install glibc-static.x86_64<br /><br />IA32:<br />yum install glibc-static.i686<br /><br />(you may have to research and find a 32bit version of glibc-static.  Use rpmfind or some other web search to find  an appropriate 32bit version of glibc-static that matches the 64bit  version you installed above with yum).<br /><br />Another work-around: avoid static linking - don't use the -static or -fast compiler options.<br /><br /><br /></div> ]]></description>
      <link>http://software.intel.com/en-us/articles/error-ld-cannot-find-lm/</link>
      <pubDate>Sun, 28 Nov 2010 20:00:00 -0800</pubDate>
      <comments>http://software.intel.com/en-us/articles/error-ld-cannot-find-lm/#comments</comments>
      <guid isPermaLink="true">http://software.intel.com/en-us/articles/error-ld-cannot-find-lm/</guid>
      <category>Intel® C++ Compiler for Linux* Knowledge Base</category>
      <category>Intel® Fortran Compiler for Linux* Knowledge Base</category>
    </item>
    <item>
      <title>Using Intel Compilers for Linux Under Redhat Enterprise Linux or CentOS</title>
      <description><![CDATA[ <p><b>Using Intel Composer XE 2011 (Compiler XE 12.0) and Compiler Pro 11.1 for Linux with RHEL 6<br /></b></p>
<p><b><span > </span></b></p>
<h2 ><b><span >Navigation:</span></b></h2>
<b>
<h2 ><span ><span >Linux and Mac OS X Compilers Installation Help Center: <a  href="http://software.intel.com/en-us/articles/intel-compilers-linux-installation-help/">http://software.intel.com/en-us/articles/intel-compilers-linux-installation-help/</a></span></span></h2>
</b>
<p> </p>
<p><b>Introduction:</b></p>
<p>Please see your ReleaseNotes document with your compiler to find the supported Linux distributions and versions.  These instructions are merely to help install the compiler, keep in mind that versions of this distribution NOT in the ReleaseNotes document are NOT tested nor supported.  You are on your own here.</p>
<p>Using Intel® Compilers under RHEL 6 by Ron W. Green.  For older RHEL distributions, skip below to information on those older distros.</p>
<p>In order to use Intel(R) Compilers (C++  or  Fortran) under RHEL 6, you will need the latest 12.0 version or 11.1 version of the Intel compiler(s) in products named "Intel Composer XE 2011", "Intel Parallel Studio XE 2011", "Intel C++ Studio XE 2011", or "Intel Compiler Professional version 11.1".   Do NOT try to install older Intel Compilers such as 11.0, 10.x, 9.x or 8.x under RHEL 6: they will not install easily and probably will not work - and they are NOT supported.  If you need an older Intel Compiler version, please read their ReleaseNotes and obtain an older, supported RHEL distribution.</p>
<p>Also, determine your needs and get the right installation tarball.  Most  linux users are on 64bit systems with x86_64 versions of linux  installed.  Do you need to create older 32bit applications?  If not,  download the Intel 64 ONLY tarball, the *_intel64.tgz file.  Not only  does this save download time, this will eliminate your need to install  32bit libraries on the development system.  If you have active support for your compiler, you can download the latest Intel compiler version from the Intel Registration Center at:</p>
<p><a href="https://registrationcenter.intel.com/">https://registrationcenter.intel.com</a></p>
<p>BEFORE YOU INSTALL the Intel(R) Compiler for Linux on your RHEL 6 installation you will need to disable SELinux OR set SELinux to "Permissive".  As root, edit /etc/sysconfig/selinux and either disable SELinux or set it "Permissive" - then reboot.</p>
<p>Hopefully, during the installation of the OS you selected a profile for a "Software Development" configuration.  This installs the proper gcc/g++/binutils and other necessary development packages.  If not, set it up as a development platform.  You will first need to install several packages that are prerequisites to preparing the system to serve as a development platform:<br /><br />1. Check that GNU gcc and g++ are installed on the system. By default you can simply check by executing the <br />command:<br /><br />gcc --version<br /><br />If for some reason, you do not have gcc installed, then go ahead <br />and install gcc and g++ on your system. You can use the software package manager “yum” to do the install. Refer <br />to http://fedoraproject.org/wiki/Tools/yum to learn more on yum.</p>
<p>As root user, in a terminal window:<br />yum install gcc<br />yum install gcc-c++</p>
<p>If you want to link statically, that is with -static or -fast (which contains -static), you will need the static versions of glibc.  Keep in mind that static linking is being discouraged by the larger linux community.  You may, of course, use -static-intel to statically link the Intel libraries.  However, if you want to also statically link the system libraries in glibc you will need the static versions of glibc.<br /><br />x86_64:<br />yum install glibc-static.x86_64<br /><br />IA32 (only if you want to install the 32bit compiler):<br />yum install glibc-static.i686<br /><br />(if yum cannot find the static 32bit versions of glibc-static you will need to find an rpm source.  Use rpmfind or some other web search to find an appropriate 32bit version of glibc-static that matches the 64bit version you installed above with yum).<br /><br />4. Finally, there is an optional package to consider: The 11.x version of the Intel Compiler for Linux has a graphical <br />debugger, a new graphical interface for the IDB debugger. If you want to use this debugger, please make sure to <br />install the JAVA JRE version 1.5 or higher. <br /><br />check that java JRE is installed:<br />java -version<br />or<br />java --version<br /><br />(note: compilers older than 11.1.064 had issues finding installed java JREs.  Please upgrade to new compiler OR ignore the 'missing java' prerequisite check)<br /><br />If java is missing, you may get the latest JRE from:<br /><br /><a href="http://java.com/en/download/manual.jsp">http://java.com/en/download/manual.jsp</a></p>
<p><b><br /></b></p>
<p><b>For Intel Compiler Professional Edition v11.1 ONLY:</b></p>
<p>In addition to the above, if you have an older v11.1 version of the Intel Compilers for Linux, you need to do the following:</p>
<p>You will need to ensure that the 32-bit version of the standard C++ library, libstdc++.so.5 (typically found <br />in /usr/lib/ directory) is installed on the system. The Intel® C++ and Fortran compilers for Linux installation require <br />the linkage to the 32-bit version of libstdc++.so.5 library on all Linux distributions. Failure to do so will result in <br />installation failure on library dependencies not met. For more details, refer to the article at:</p>
<a href="http://software.intel.com../../articles/performance-tools-for-software-developers-intel-compiler-10x-installation-failure-libstdc-failed-dependencies/">http://software.intel.com/en-us/articles/performance-tools-for-software-developers-intel-compiler-10x-installation-failure-libstdc-failed-dependencies/</a><br /><br />as root user, in a terminal window, install the compatibilty library libstdc++.so.5 for 32bit AND the 32bit glibc-devel libraries<br />yum install compat-libstdc++-33.i686      (note: name in older RHEL, compat-libstdc++-33.i586)<br />yum install glibc-devel.i686                     (note: name in older RHEL, glibc-devel.i586)<br /><br />if you have a 64bit x86_64 RHEL system, you also need to install the 64 bit version of compat-libstdc++ <br />yum install compat-libstdc++-33.x86_64<br /><br />Once installation of above prerequisites is complete, you are ready to start the Intel compiler(s) installation!<br /><br />
<p>If you have problem even after following this guide, DO NOT leave comments - instead, go to our User Forum and submit a problem report:  For Fortran, <a href="http://software.intel.com../../forums/intel-fortran-compiler-for-linux-and-mac-os-x/">http://software.intel.com/en-us/forums/intel-fortran-compiler-for-linux-and-mac-os-x/</a> and for C++, <a href="http://software.intel.com/en-us/forums/intel-c-compiler/">http://software.intel.com/en-us/forums/intel-c-compiler/</a> .</p> ]]></description>
      <link>http://software.intel.com/en-us/articles/using-intel-compilers-for-linux-under-redhat-enterprise-linux/</link>
      <pubDate>Thu, 25 Nov 2010 23:00:00 -0800</pubDate>
      <comments>http://software.intel.com/en-us/articles/using-intel-compilers-for-linux-under-redhat-enterprise-linux/#comments</comments>
      <guid isPermaLink="true">http://software.intel.com/en-us/articles/using-intel-compilers-for-linux-under-redhat-enterprise-linux/</guid>
      <category>Intel® C++ Compiler for Linux* Knowledge Base</category>
      <category>Intel® Fortran Compiler for Linux* Knowledge Base</category>
    </item>
    <item>
      <title>Redistributable libraries for the Intel(R) C++ and Fortran Composer XE for Linux*</title>
      <description><![CDATA[ <p><strong class="sectionHeading">Overview<br /></strong><br />This article contains links to the redistributable installation packages for the Intel C++ and Fortran Composer XE for Linux*. <br />The redistributable packages are for the end users who use applications that are built with Intel Compilers. Please note that there is one redistributable package for every compiler update. Make sure you download and install the one recommended by the application vendor. <br /><br /><strong><span class="sectionHeading">OS requirement for redistributable packages for Intel C++ and Fortran Composer XE for Linux</span></strong></p>
<p><br />Please read the Release Notes of the update for supported OS distributions:</p>
<ul>
<li><a href="http://software.intel.com/en-us/articles/intel-c-composer-xe-2011-release-notes/">Release Notes of Intel C++ Composer XE for Linux</a></li>
<li><a href="http://software.intel.com/en-us/articles/intel-fortran-composer-xe-2011-release-notes/">Release Notes of Intel Fortran Composer XE for Linux</a> </li>
</ul>
<p><strong><span class="sectionHeading"><br />Installation instructions<br /></span><br /></strong>First of all, use following command to untar the .tgz file: <br />$tar -xzvf l_ccompxe_2011.0.084_redist.tgz<br /><br />To start the installation, run following shell command: <br />$. ./l_ccompxe_2011.0.084_redist/install.sh<br />The installation shell program (install.sh) of the redistributable package will guide you through the installation. You will need to accept the EULA and the installation will install all the libraries to the following directory. But you can change the installation directory. <br /><br />For the redistributable package of Intel C++ and Fortran Composer XE for Linux, the default installation directory is <br />/opt/intel/composerxe-2011.0.xxx/<br /><br /><strong><span class="sectionHeading">Links to the redistributable packages<br /></span><br /></strong></p>
<p>
<table cellpadding="0" cellspacing="0" border="2" >
<tbody>
<tr bgcolor="#c0c0c0">
<td width="295" valign="top"><b>Intel C++ Composer XE for Linux</b></td>
<td width="295" valign="top"><b>Intel Fortran Composer XE for Linux</b></td>
</tr>
<tr>
<td width="295" valign="top">RTM<br />• <a href="http://registrationcenter.intel.com/irc_nas/1959/l_ccompxe_2011.0.084_redist.tgz">Redistributable library package</a></td>
<td width="295" valign="top">RTM<br />• <a href="http://registrationcenter.intel.com/irc_nas/1960/l_fcompxe_2011.0.084_redist.tgz">Redistributable library package</a></td>
</tr>
<tr>
<td width="295" valign="top">Update 1<br />• Redistributable library package<br /><br />There is a bug in the redistributable package for "Update1" so the redistributable package has been removed. <br /><br />The work-around is to use the redistributable from RTM. Please confirm with your application vendor first before downloading/installing.</td>
<td width="295" valign="top">Update 1<br />• Redistributable library package<br /><br />There is a bug in the redistributable package for "Update1" so the redistributable package has been removed. <br /><br />The work-around is to use the redistributable from RTM. Please confirm with your application vendor first before downloading/installing.  <br /></td>
</tr>
<tr>
<td width="295" valign="top">Update 2<br />• <a href="http://registrationcenter.intel.com/irc_nas/2054/l_ccompxe_2011.2.137_redist.tgz">Redistributable library package</a></td>
<td width="295" valign="top">Update 2<br />• <a href="http://registrationcenter.intel.com/irc_nas/2055/l_fcompxe_2011.2.137_redist.tgz">Redistributable library package</a></td>
</tr>
<tr>
<td width="295" valign="top">Update 3<br />• <a href="http://registrationcenter.intel.com/irc_nas/2095/l_ccompxe_2011.3.174_redist.tgz">Redistributable library package</a></td>
<td width="295" valign="top">Update 3<br />• <a href="http://registrationcenter.intel.com/irc_nas/2096/l_fcompxe_2011.3.174_redist.tgz">Redistributable library package</a></td>
</tr>
<tr>
<td width="295" valign="top">Update 4<br />• <a href="http://registrationcenter.intel.com/irc_nas/2136/l_ccompxe_2011.4.191_redist.tgz">Redistributable library package</a></td>
<td width="295" valign="top">Update 4<br />• <a href="http://registrationcenter.intel.com/irc_nas/2135/l_fcompxe_2011.4.191_redist.tgz">Redistributable library package</a></td>
</tr>
<tr>
<td width="295" valign="top">Update 5<br />• <a href="http://registrationcenter.intel.com/irc_nas/2264/l_ccompxe_2011.5.220_redist.tgz">Redistributable library package</a></td>
<td width="295" valign="top">Update 5<br />• <a href="http://registrationcenter.intel.com/irc_nas/2265/l_fcompxe_2011.5.220_redist.tgz">Redistributable library package</a></td>
</tr>
<tr>
<td width="295" valign="top">Update 6<br />• <a href="http://registrationcenter.intel.com/irc_nas/2293/l_ccompxe_2011.6.233_redist.tgz">Redistributable library package</a></td>
<td width="295" valign="top">Update 6<br />• <a href="http://registrationcenter.intel.com/irc_nas/2308/l_fcompxe_2011.6.233_redist.tgz">Redistributable library package</a></td>
</tr>
<tr>
<td width="295" valign="top">Update 7<br />• <a href="http://registrationcenter.intel.com/irc_nas/2378/l_ccompxe_2011.7.256_redist.tgz">Redistributable library package</a></td>
<td width="295" valign="top">Update 7<br />• <a href="http://registrationcenter.intel.com/irc_nas/2373/l_fcompxe_2011.7.256_redist.tgz">Redistributable library package</a></td>
</tr>
<tr>
<td width="295" valign="top">Update 8<br />• <a href="http://registrationcenter.intel.com/irc_nas/2429/l_ccompxe_2011.8.273_redist.tgz">Redistributable library package</a></td>
<td width="295" valign="top">Update 8<br />• <a href="http://registrationcenter.intel.com/irc_nas/2430/l_fcompxe_2011.8.273_redist.tgz">Redistributable library package</a></td>
</tr>
<tr>
<td width="295" valign="top">
<p><br />Currently we do not have redistributable packages for Intel® IPP, Intel® TBB, and Intel® MKL. When they're available, this article will be modified to include them.</p>
</td>
<td width="295" valign="top"><br />Currently we do not have redistributable packages for Intel® MKL. When available, this article will be modified.</td>
</tr>
</tbody>
</table>
</p>
<p> </p>
<p><br /><br /><strong>References<br /><br /></strong><a href="http://software.intel.com/en-us/articles/redistribution-of-application-binaries-built-for-linux/">Redistribution of Application Binaries Built for Linux*</a></p>
<p> </p>
<p> </p>
<div></div>
<p> </p> ]]></description>
      <link>http://software.intel.com/en-us/articles/redistributable-libraries-for-the-intel-c-and-fortran-composer-xe-for-linux/</link>
      <pubDate>Sun, 07 Nov 2010 00:00:00 -0700</pubDate>
      <comments>http://software.intel.com/en-us/articles/redistributable-libraries-for-the-intel-c-and-fortran-composer-xe-for-linux/#comments</comments>
      <guid isPermaLink="true">http://software.intel.com/en-us/articles/redistributable-libraries-for-the-intel-c-and-fortran-composer-xe-for-linux/</guid>
      <category>Intel® C++ Compiler for Linux* Knowledge Base</category>
      <category>Intel® Fortran Compiler for Linux* Knowledge Base</category>
    </item>
    <item>
      <title>Is Intel® MKL stand-alone version similar to the Professional Edition version?</title>
      <description><![CDATA[ <ul>
<li>The Intel® Math Kernel Library (Intel® MKL) is available as a stand-alone version as well a sub-component in various Intel® Software Development Products:</li>
</ul>
<p><a target="_blank" href="http://software.intel.com/en-us/articles/intel-parallel-studio-xe/"><strong><span >Intel® Parallel Studio XE 2011</span></strong></a></p>
<ul>
<li><a target="_blank" href="http://software.intel.com/en-us/articles/intel-composer-xe/">Intel® Composer XE for Windows*</a> (formerly Intel® Compiler Suite Professional Edition for Windows)<br />Intel® C++ Composer XE for Windows (formerly Intel® C++ Compiler Professional Edition for Windows)</li>
<li><a target="_blank" href="http://software.intel.com/en-us/articles/intel-parallel-studio-xe/">Intel® C++ Studio XE for Windows</a> (<strong>New: </strong>includes Intel C++ Compiler, Intel IPP, Intel MKL, Intel TBB, Intel® Parallel Debugger Extension, Intel® VTune<sup>TM</sup> Amplifier XE and Intel® Inspector XE<em>)</em></li>
<li>Intel® Fortran Composer XE for Windows (formerly Intel® Fortran Compiler Professional Edition for Windows)</li>
<li><a target="_blank" href="http://software.intel.com/en-us/articles/intel-parallel-studio-xe/">Intel® Parallel Studio XE for Windows</a> (<b>New: </b>includes Intel C++ Compiler, Intel IPP, Intel MKL, Intel TBB, Intel® Parallel Debugger Extension, Intel® VTune<sup>TM</sup> Amplifier XE and Intel® Inspector XE)</li>
<li><a target="_blank" href="http://software.intel.com/en-us/articles/intel-parallel-studio-home/">Intel® Composer XE for Linux*</a> (formerly Intel® Compiler Suite Professional Edition for Linux)</li>
<li>Intel® C++ Composer XE for Linux (formerly Intel® C++ Compiler Professional Edition for Linux)</li>
<li><a target="_blank" href="http://software.intel.com/en-us/articles/intel-parallel-studio-xe/">Intel® C++ Studio XE for Linux </a>(<strong>New:</strong> includes Intel C++ Compiler, Intel IPP, Intel MKL, Intel TBB, Intel® Debugger, Intel® VTune<sup>TM</sup> Amplifier XE and Intel® Inspector XE<em>)</em></li>
<li>Intel® Fortran Composer XE for Linux (formerly Intel® Fortran Compiler Professional Edition for Linux)</li>
<li><a target="_blank" href="http://software.intel.com/en-us/articles/intel-parallel-studio-xe/">Intel® Parallel Studio XE for Linux </a>(<b>New:</b> includes Intel C++ Compiler, Intel IPP, Intel MKL, Intel TBB, Intel®  Debugger, Intel® VTune<sup>TM</sup> Amplifier XE and Intel® Inspector XE<i>)</i></li>
<li>Intel® Composer XE for Mac OS* X (formerly Intel® Compiler Suite Professional Edition for Mac OS* X)</li>
<li>Intel® C++ Composer XE for Mac OS* X (formerly Intel® C++ Compiler Professional Edition for Mac OS X)</li>
<li>Intel® Fortran Composer XE for Mac OS* X (formerly Intel® Fortran Compiler Professional Edition for Mac OS X)</li>
</ul>
<p><strong><span ><a href="http://software.intel.com/en-us/intel-cluster-toolkit/"><b><span >Intel® Cluster Toolkit</span></b></a> </span></strong>       </p>
<ul>
<li><a href="http://software.intel.com/en-us/intel-cluster-toolkit/">Intel® Cluster Toolkit for Window*</a></li>
<li><a href="http://software.intel.com/en-us/intel-cluster-toolkit/">Intel® Cluster Toolkit for Linux*</a></li>
<li><a target="_blank" href="http://software.intel.com/en-us/articles/intel-cluster-studio/">Intel® Cluster Studio </a>(formerly Intel® Cluster Toolkit Compiler Edition for Window*)</li>
<li><a target="_blank" href="http://software.intel.com/en-us/articles/intel-cluster-studio/">Intel® Cluster Studio</a> (formerly Intel® Cluster Toolkit Compiler Edition for Linux*)</li>
</ul>
<p><a target="_blank" href="http://software.intel.com/en-us/intel-mkl"><strong><span >Intel® Math Kernel Library (Intel® MKL) Standalone Products</span></strong></a></p>
<ul>
<li>Intel Math Kernel Library for Windows*</li>
<li>Intel Math Kernel Library for Linux*</li>
</ul>
<p> <br />The Intel MKL standalone version is identical to the version contained in the various bundled Intel Software Products. <a href="http://software.intel.com/en-us/articles/which-version-of-ipp--mkl--tbb-is-installed-with-intel-compiler-professional-edition/">Refer to this article</a> to determine which exact Intel MKL version is contained in the Intel Professional Edition Compilers and Intel Parallel Composer. <br /><br />There is no standalone Intel MKL for Mac OS* X, it is only available Intel® Composer XE for Mac OS* X.  Please refer <a target="_blank" href="http://software.intel.com/en-us/articles/performance-tools-for-software-developers-how-can-i-download-the-intel-ipp-and-intel-mkl-for-mac-os-x/">this article</a> for more details.</p>
<ul>
<li>  
<ul>
<li>  
<ul>
<p>Please read these article links for details regarding which version of the Intel MKL is included with the <a href="http://software.intel.com/en-us/articles/which-version-of-ipp--mkl--tbb-is-installed-with-intel-compiler-professional-edition/">Intel Compiler Pro products</a> and the <a href="http://software.intel.com/en-us/articles/which-version-of-the-intel-ipp-intel-mkl-and-intel-tbb-libraries-are-included-in-the-intel-composer-bundles/">Intel Composer XE bundles</a>.</p>
<p> </p>
<p><!--CTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dt--></p>
</ul>
</li>
</ul>
</li>
</ul> ]]></description>
      <link>http://software.intel.com/en-us/articles/intel-math-kernel-library-intel-mkl-is-intel-mkl-stand-alone-version-similar-to-the-professional-edition-version/</link>
      <pubDate>Fri, 05 Nov 2010 07:30:00 -0700</pubDate>
      <comments>http://software.intel.com/en-us/articles/intel-math-kernel-library-intel-mkl-is-intel-mkl-stand-alone-version-similar-to-the-professional-edition-version/#comments</comments>
      <guid isPermaLink="true">http://software.intel.com/en-us/articles/intel-math-kernel-library-intel-mkl-is-intel-mkl-stand-alone-version-similar-to-the-professional-edition-version/</guid>
      <category>Intel® Fortran Compiler for Linux* Knowledge Base</category>
      <category>Intel® Fortran Compiler for Mac OS X* Knowledge Base</category>
      <category>Intel® Math Kernel Library Knowledge Base</category>
    </item>
    <item>
      <title>Intel Fortran Composer XE 2011 Release Notes</title>
      <description><![CDATA[ <p>This page provides the current Installation Guide and Release Notes for the Intel® Fortran Composer XE 2011 products. All files are in PDF format - <a target="_blank" href="http://www.adobe.com/go/EN_US-H-GET-READER">Adobe Reader* </a>(or compatible) required.</p>
<p>For version 11.1, please see <a href="http://software.intel.com/en-us/articles/intel-fortran-compiler-111-release-notes/">Intel Fortran Compiler 11.1 Release Notes</a></p>
<p>To get product updates, log in to the <a target="_blank" href="https://registrationcenter.intel.com/">Intel® Software Development Products Registration Center</a>.</p>
<p>For questions or technical support, visit <a target="_blank" href="http://software.intel.com/sites/support/">Intel® Software Developer Support</a></p>
<hr />
<p><b><br /></b></p>
<p><b>Update 8 - December 2011<br /></b>Intel® Fortran Composer XE 2011 for Linux*</p>
<ul>
<li><a href="http://software.intel.com/file/40410">English</a></li>
</ul>
<p>Intel® Fortran Composer XE 2011 for Mac OS X*</p>
<ul>
<li><a href="http://software.intel.com/file/40411">English</a></li>
</ul>
<p>Intel® Visual Fortran Composer XE 2011 for Windows*</p>
<ul>
<li><a href="http://software.intel.com/file/40409">English</a></li>
</ul>
<p><b>Update 7 - October 2011<br /></b>Intel® Fortran Composer XE 2011 for Linux*</p>
<ul>
<li><a href="http://software.intel.com/file/39195">English</a></li>
<li><a href="http://software.intel.com/file/39196">Japanese</a></li>
</ul>
<p>Intel® Fortran Composer XE 2011 for Mac OS X*</p>
<ul>
<li><a href="http://software.intel.com/file/39194">English</a></li>
</ul>
<p>Intel® Visual Fortran Composer XE 2011 for Windows*</p>
<ul>
<li><a href="http://software.intel.com/file/39192">English</a></li>
<li><a href="http://software.intel.com/file/39193">Japanese</a></li>
</ul>
<p><b>Update 6 - September 2011<br /></b>Intel® Fortran Composer XE 2011 for Linux*</p>
<ul>
<li><a href="http://software.intel.com/file/38270">English</a></li>
</ul>
<p>Intel® Fortran Composer XE 2011 for Mac OS X*</p>
<ul>
<li><a href="http://software.intel.com/file/38271">English</a></li>
</ul>
<p>Intel® Visual Fortran Composer XE 2011 for Windows*</p>
<ul>
<li><a href="http://software.intel.com/file/38272">English</a></li>
</ul>
<p><b>Update 5 - July 2011<br /></b>Intel® Fortran Composer XE 2011 for Linux*</p>
<ul>
<li><a href="http://software.intel.com/file/37910">English</a></li>
</ul>
<p>Intel® Fortran Composer XE 2011 for Mac OS X*</p>
<ul>
<li><a href="http://software.intel.com/file/37911">English</a></li>
</ul>
<p>Intel® Visual Fortran Composer XE 2011 for Windows*</p>
<ul>
<li><a href="http://software.intel.com/file/37912">English</a></li>
</ul>
<p><b>Update 4 - May 2011<br /></b>Intel® Fortran Composer XE 2011 for Linux*</p>
<ul>
<li><a href="http://software.intel.com/file/36129">English</a></li>
</ul>
<p>Intel® Fortran Composer XE 2011 for Mac OS X*</p>
<ul>
<li><a href="http://software.intel.com/file/36130">English</a></li>
</ul>
<p>Intel® Visual Fortran Composer XE 2011 for Windows*</p>
<ul>
<li><a href="http://software.intel.com/file/36131">English</a></li>
</ul>
<p><b>Update 3 - March 2011<br /></b>Intel® Fortran Composer XE 2011 for Linux*</p>
<ul>
<li><a href="http://software.intel.com/file/35033">English</a></li>
<li><a href="http://software.intel.com/file/35034">Japanese</a></li>
</ul>
<p>Intel® Fortran Composer XE 2011 for Mac OS X*</p>
<ul>
<li><a href="http://software.intel.com/file/35035">English</a></li>
</ul>
<p>Intel® Visual Fortran Composer XE 2011 for Windows*</p>
<ul>
<li><a href="http://software.intel.com/file/35036">English</a></li>
<li><a href="http://software.intel.com/file/35037">Japanese</a></li>
</ul>
<p><b>Update 2 - January 2011<br /></b>Intel ® Fortran Composer XE 2011 for Linux*</p>
<ul>
<li><a href="http://software.intel.com/file/33834">English</a></li>
</ul>
<p>Intel® Fortran Composer XE 2011 for Mac OS X*</p>
<ul>
<li><a href="http://software.intel.com/file/33835">English</a></li>
</ul>
<p>Intel® Visual Fortran Composer XE 2011 for Windows*</p>
<ul>
<li><a href="http://software.intel.com/file/33836">English</a></li>
</ul>
<p><b>Update 1 - December 2010<br /></b>Intel® Fortran Composer XE 2011 for Linux*</p>
<ul>
<li><a href="http://software.intel.com/file/32672">English</a></li>
<li><a href="http://software.intel.com/file/32673">Japanese</a></li>
</ul>
<p>Intel® Fortran Composer XE 2011 for Mac OS X*</p>
<ul>
<li><a href="http://software.intel.com/file/32674">English</a></li>
</ul>
<p>Intel® Visual Fortran Composer XE 2011 for Windows*</p>
<ul>
<li><a href="http://software.intel.com/file/32675">English</a></li>
<li><a href="http://software.intel.com/file/32676">Japanese</a></li>
</ul>
<p><b>Initial Product Release - November 2010</b><br />Intel® Fortran Composer XE 2011 for Linux*</p>
<ul>
<li><a href="http://software.intel.com/file/32098">English</a></li>
</ul>
<p>Intel® Fortran Composer XE 2011 for Mac OS X*</p>
<ul>
<li><a href="http://software.intel.com/file/31390">English</a></li>
</ul>
<p>Intel® Visual Fortran Composer XE 2011 for Windows*</p>
<ul>
<li><a href="http://software.intel.com/file/31391">English</a></li>
</ul> ]]></description>
      <link>http://software.intel.com/en-us/articles/intel-fortran-composer-xe-2011-release-notes/</link>
      <pubDate>Thu, 28 Oct 2010 00:00:00 -0700</pubDate>
      <comments>http://software.intel.com/en-us/articles/intel-fortran-composer-xe-2011-release-notes/#comments</comments>
      <guid isPermaLink="true">http://software.intel.com/en-us/articles/intel-fortran-composer-xe-2011-release-notes/</guid>
      <category>Intel® Fortran Compiler for Linux* Knowledge Base</category>
      <category>Intel® Fortran Compiler for Mac OS X* Knowledge Base</category>
      <category>Intel® Visual Fortran Compiler for Windows* Knowledge Base</category>
    </item>
    <item>
      <title>Intel Compilers for Linux* Silent Installation Guides</title>
      <description><![CDATA[ Please refer to the appropriate article below for your compiler version.<br /><br /><a href="http://software.intel.com/en-us/articles/intel-compilers-for-linux-version-111-silent-installation-guide/">Intel® C++ or Fortran Composer XE 2011 for Linux*</a><br /><a href="http://software.intel.com/en-us/articles/intel-compilers-for-linux-version-111-silent-installation-guide/">Intel® C++ or Fortran Compiler Version 11.1 for Linux*</a> ]]></description>
      <link>http://software.intel.com/en-us/articles/intel-compilers-for-linux-silent-installation-guides/</link>
      <pubDate>Tue, 28 Sep 2010 00:00:00 -0700</pubDate>
      <comments>http://software.intel.com/en-us/articles/intel-compilers-for-linux-silent-installation-guides/#comments</comments>
      <guid isPermaLink="true">http://software.intel.com/en-us/articles/intel-compilers-for-linux-silent-installation-guides/</guid>
      <category>Intel® C++ Compiler for Linux* Knowledge Base</category>
      <category>Intel® Fortran Compiler for Linux* Knowledge Base</category>
    </item>
    <item>
      <title>Checklist for Installation and Troubleshooting Intel® FLEXlm* License Manager</title>
      <description><![CDATA[ NOTE: Many of the following steps should be reviewed and performed when a floating product license is renewed or added to an existing set of floating licenses, and when a combined license file is updated.<br /><br /><br />1. Download the latest Intel FLEXlm* License Manager user guide. Click <a href="http://software.intel.com/en-us/articles/license-manager-for-flexlm-users-guide/" title="Intel FLEXlm* user guide">here</a> to download the user guide.<br /><br /><strong>Steps to complete FOR THE LICENSE HOST SERVER SYSTEM(S)<br /></strong><br />2. Download the Intel® FLEXlm* license server that best matches your license host server OS. Click <a href="http://software.intel.com/en-us/articles/performance-tools-for-software-developers-intel-flexlm-license-servers/" title="Intel FLEXlm license servers">here</a> to download license servers.<br /><br />3. Verify your license host server machine’s host name and host id. If you are using three redundant license host server systems, verify the host name and host id for all three machines. Click <a href="http://software.intel.com/en-us/articles/how-to-find-host-id-for-floating-licenses/" title="How to find host id for floating licenses">here</a> for more information. <br /><br />4. Verify your floating licenses are registered with the correct host name and host id specified. If you are using three redundant license host server systems, verify all three host names and host ids are specified for each floating license. <br />You can find this information by logging  into the <a href="https://registrationcenter.intel.com/" title="Intel Registration Center">Intel Registration Center</a> and checking your floating license information.<br /><br />5. If any of your floating licenses have incorrect or out-of-date host name or host id information, follow the instructions in this user guide to correct the information in the floating license(s), and obtain updated license file(s). Click <a href="http://software.intel.com/en-us/articles/change--serverhost-data-node-locked-or-floating-license/" title="How to change host server data">here</a> for more information.<br /><br />6. If you wish to combine your floating license files into one file, follow the instructions in section 4.3 of the Intel(R) FLEXlm* License Manager user guide, or follow the instructions <a href="http://software.intel.com/en-us/articles/how-do-i-combine-multiple-license-files/" title="Combining multiple floating license files">here</a>.<br /><br />7. Verify that all the individual floating license files or the combined license file resides on your license host server system. Ensure there are no Single User, evaluation, or Beta licenses residing in the flexlm license directory on your license host server system. <br /><br />On Linux*: /opt/intel/flexlm/<br />On Mac OS* X: /opt/intel/flexlm/ <br />On Windows*: C:\Program Files\Common Files\Intel\FLEXlm<br /><br />8. If you have specified three redundant license host server systems in your floating licenses, at least two of the three redundant license host servers must be up and running at all times. Click <a href="http://software.intel.com/en-us/articles/redundancy-server-notes/" title="Redundancy license server notes">here</a> for more information.<br /><br />9. Install your Intel® FLEXlm* license server binary on your license host server system. If you have specified three redundant license host server systems in your floating licenses, complete all three license host server installations. Follow the instructions in Chapter 3 of the Intel FLEXlm* License Manager <a href="http://software.intel.com/en-us/articles/license-manager-for-flexlm-users-guide/" title="Intel FLEXlm* user guide">user guide</a>.<br /><br />10. Start your license host server process by following the instructions in Chapter 3 of the Intel FLEXlm* License Manager user guide. If you are using a Vista or Windows Server 2008 system, please see the information at this <a href="http://software.intel.com/en-us/articles/installing-license-server-on-vista/" title="Vista or Windows 2008* Server">link</a>.<br /><br />11. Ensure your license server is running by following the instructions in the user guide for the &lt;&lt; lmstat &gt;&gt; command. Click <a href="http://software.intel.com/en-us/articles/when-is-a-floating-license-seat-checked-out-and-checked-in/" title="license checkout and lmstat command">here</a> for more information.<br /><br /><br /><strong>Steps to complete ON THE CLIENT SYSTEMS<br /></strong><br />12. On each client system, install the Intel software product(s) your users will be running from that client system. You will likely need a copy of the floating .lic license file on the client system for each product you will be installing; please put the copy of the Intel product floating license file(s) in the default Intel license file directory, and make sure you are using the same license file on the client system as you are using on the license host server system(s).<br /><br />There is a different default Intel license file directory on Windows*, Linux* and Mac OS* X.<br /><br />Windows*:   C:\Program Files\Common Files\Intel\Licenses <br /><br />Linux*:   /opt/intel/licenses/<br /><br />Mac OS* X:  /Users/Shared/Library/Application Support/Intel/Licenses/<br /><br /><br />13. Set the INTEL_LICENSE_FILE environment variable on each client system. Click <a href="http://software.intel.com/en-us/articles/how-to-set-intel_license_file-environment-variable/" title="Set INTEL_LICENSE_FILE environment variable">here</a> for more information.<br /><br />14. Try launching the Intel product, such as the Intel® C++ Compiler product. <br /><br />15. If problems occur with floating license seat check-out, or with any of these steps, please follow the steps in Chapter 5 of the <a href="http://software.intel.com/en-us/articles/license-manager-for-flexlm-users-guide/" title="Intel FLEXlm* user guide">user guide</a> to capture a debug log for your license host server.  <br /><br />Then submit a new issue to <a href="https://premier.intel.com/" title="Intel Premier Support">Intel® Premier Support</a> and attach the debug log you generated.<br />If you do not have access to Premier Support, please post a new question on the <a href="http://software.intel.com/en-us/forums/intel-software-development-products-download-registration-licensing/" title="User forum for Downloads, Licensing and Registration">user forum</a>.<br /><br />15. To help the Support team assist you efficiently with your problem, please provide the following information:<br /><br />     a. OS and architecture for your license host server system(s)<br /><br />     b. the name of the specific Intel FLEXlm license manager server file you downloaded and installed<br /><br />     c. the serial number for the floating license you are using <br />[NOTE: DO NOT POST SERIAL NUMBERS IN USER FORUM COMMUNICATIONS UNTIL OUR SUPPORT TEAM HAS CHANGED YOUR POSTING TO PRIVATE STATUS.]<br /><br />     d. the environment variable setting for INTEL_LICENSE_FILE<br /><br />     e. a copy of each floating license file you are using <br />[NOTE: DO NOT ATTACH FILES TO A USER FORUM POSTING UNTIL OUR SUPPORT TEAM HAS CHANGED YOUR POSTING TO PRIVATE STATUS.]<br /><br />     f. the combined license file (only if customer is using a combined license file)<br />[NOTE: DO NOT ATTACH FILES TO A USER FORUM POSTING UNTIL OUR SUPPORT TEAM HAS CHANGED YOUR POSTING TO PRIVATE STATUS.]<br /><br />     g. host server name and host server id for the license host server(s) <br /><br />      h. verification that Intel License manager is running (capture of the results of running the appropriate lmstat command)<br />[NOTE: DO NOT ATTACH FILES TO A USER FORUM POSTING UNTIL OUR SUPPORT TEAM HAS CHANGED YOUR POSTING TO PRIVATE STATUS.]<br /><br />     i. license server debug log and client-side debug log<br />[NOTE: DO NOT ATTACH FILES TO A USER FORUM POSTING UNTIL OUR SUPPORT TEAM HAS CHANGED YOUR POSTING TO PRIVATE STATUS.]<br /><br /><br /><br /> ]]></description>
      <link>http://software.intel.com/en-us/articles/checklist-for-installation-and-troubleshooting-intel-flexlm-license-manager/</link>
      <pubDate>Mon, 16 Aug 2010 00:00:00 -0700</pubDate>
      <comments>http://software.intel.com/en-us/articles/checklist-for-installation-and-troubleshooting-intel-flexlm-license-manager/#comments</comments>
      <guid isPermaLink="true">http://software.intel.com/en-us/articles/checklist-for-installation-and-troubleshooting-intel-flexlm-license-manager/</guid>
      <category>Intel® C++ Compiler for Linux* Knowledge Base</category>
      <category>Intel® C++ Compiler for Mac OS X* Knowledge Base</category>
      <category>Intel® C++ Compiler for Windows* Knowledge Base</category>
      <category>Intel® Fortran Compiler for Linux* Knowledge Base</category>
      <category>Intel® Fortran Compiler for Mac OS X* Knowledge Base</category>
      <category>Intel® License Manager for FLEXlm* Knowledge Base</category>
      <category>Intel® Visual Fortran Compiler for Windows* Knowledge Base</category>
    </item>
    <item>
      <title>Intel® FLEXlm* License Borrowing Capability</title>
      <description><![CDATA[ <strong>Overview<br /></strong><br />This feature allows users to ‘borrow” a license seat from the license host server for a limited time, disconnect from the network and use the borrowed license even with no connection to the license server. This is very useful in case you want to use the software offline.<br /><br /><strong>Required Information</strong><br /><br />To use the license borrow functionality for Intel floating product licenses, customers need to ensure they have the following items:<br /><br />1) A build of the Intel® License Manager for FLEXlm* (for the desired OS) that supports the Borrow capability: <br /><br />a) Users need to make sure that they are using a build of Intel FLEXlm* License Manager which supports borrowing <br />and early return of borrowed licenses. <br /><br />b) We recommend the customer download and install one of the free license manager servers available at the <br />following website link:<br /><a href="http://software.intel.com/en-us/articles/performance-tools-for-software-developers-intel-flexlm-license-servers/">http://software.intel.com/en-us/articles/performance-tools-for-software-developers-intel-flexlm-license-servers/</a><br /><br />2) A license file which has the keyword BORROW in it: <br /><br />a) Licenses for Intel® Software Development Products with version 2011 have the BORROW feature with a BOROW period of 7 days enabled by default.  <br /><br />b) To obtain a borrow-enabled license for a multi-seat floating product license with a version older than 2011, please   submit an issue to Intel® Premier Support at https://premier.intel.com/ under product 'Download, Licensing and Registartion'.<br />     <br /><br /><strong>Steps for starting the FLEXlm* License Manager (Server) for using the Borrow feature<br /></strong><br />(1) Start the license server using the new borrow-enabled license file(s).<br /><br />(2) Check the log for the Intel® FLEXlm* License Server and make sure that it does not complain about BORROW keyword in the license file. <br /><br />     • By default, the log file location on Windows* is: %ProgramFiles%\Common Files\Intel\FLEXlm <br />     • By default, the log file location on Linux* and Mac OS* X is the same where FLEXlm server has been installed<br /><br />     A typical log file when FLEXlm Server has started successfully looks like the following:<br /><br />     14:00:31 (lmgrd) US Patents 5,390,297 and 5,671,412.<br />     14:00:31 (lmgrd) World Wide Web: http://www.macrovision.com<br />     14:00:31 (lmgrd) License file(s): server.lic<br />     14:00:31 (lmgrd) lmgrd tcp-port 28518<br />     14:00:31 (lmgrd) Starting vendor daemons ...<br />     14:00:31 (lmgrd) Started INTEL (internet tcp_port 35860 pid 9309)<br />     14:00:31 (INTEL) FLEXlm version 9.23<br />     14:00:31 (INTEL) Server started on LicenseServer for:<br />     14:00:31 (INTEL) I3F97C15E (consisting of:   ArBBL<br />     14:00:31 (INTEL) CCompL    DbgL    FCompL<br />     14:00:31 (INTEL) MKernL    PerfAnl    PerfPrimL<br />     14:00:31 (INTEL) StaticAnlL    ThreadAnlGui    ThreadBB)<br /><br /><br /><strong>Client System Setup for the Borrow feature (Application Setup)<br /></strong><br />NOTE: The term “Client” refers to the application that uses Intel FLEXlm floating license seat check-out and check-in. <br /><br />1) Download the lmutil for your operating system and architecture from http://www.globes.com/support/fnp_utilities_download.htm. <br /><br />2) If you are not able to download the lmutil from the website above, work with your Intel Support team contact (or submit an issue to Premier Support at https://premier.intel.com/) for access to lmutil, and have the information about your Operating System, OS Version and Architecture (IA-32, Intel® 64 and/or IA-64[Intel® Itanium®]).<br /><br />3) Verify that no Intel product components’ license seats (i.e., Compiler Professional Edition, Vtune, etc.) can be borrowed by running the following command. If you see any information that indicates one or more features/components were borrowed, then borrowing has already been enabled for those licensed features/components. Here is an example of output when no borrowing is enabled.<br /><br />lmutil lmborrow -status<br /><br />Example:<br />lmutil lmborrow -status<br />lmutil - Copyright (c) 1989-2009 by Macrovision Corporation. All rights reserved.<br /><br /><br />4) Configure the borrow duration and FLEXlm feature to be borrowed:<br /><br />lmutil lmborrow INTEL dd-mmm-yyyy:[time] &lt;featurename&gt; -c &lt;serverlicense file&gt;<br /><br />Example:<br />lmutil lmborrow INTEL 06-Oct-2011 CCompL -c server.lic<br /><br />where, <br />server.lic is the license file which was used to start the server. It should be noted that license borrowing will fail if the license file on the client side is different than the one which was used to start the server.<br /><br />The command above borrows a “featurename” called CCompL (Intel® C++ Compiler for Linux*) from the vendor INTEL until 6th Oct 2011 using the license file server.lic<br /><br />NOTE:  The time specified on command line of lmborrow is the end date/time the user planed to borrow, which must be &lt;= 168 hours, which is the maximum borrow period. If the user wants to borrow the license seat for only 1 or 2 days, the corresponding date/time for that period should be set. <br />Users cannot borrow a license seat for more than the 168 hour barrier that is set in the license file and in the license server logic. If an extended borrow time is required, please submit an issue to Intel® Premier Support at https://premier.intel.com/ under product 'Download, Licensing and Registartion' providing a jsutification of why you need to extend the borrow time beyond 7 days.<br /><br />After running this command, the customer should see the following:<br /><br />lmutil - Copyright (c) 1989-2004 by Macrovision Corporation. All rights reserved.<br />Setting LM_BORROW=3-oct-2011:INTEL:06-oct-2011:CCompL<br /><br /><br />5) If the above steps are successful, you are now ready to borrow a seat by running the client application (e.g. – Composer XE, Vtune Amplifier XE, Inspector XE, etc). The FLEXlm feature will be borrowed when you run the client/application and a successful check-out happens. As soon as the first license is checked out, the server log file will confirm the borrowed feature with the following message in the log file:<br /><br />14:35:14 (INTEL) OUT: "I3F97C15E" User1@Host1<br />14:35:14 (INTEL) OUT: "CCompL" User1@Host1<br /><br />Note that there are no corresponding IN entries in the server log. This is different behavior than a normal check-out where corresponding to every two OUT entries in the server log file, you will also see two IN entries after the OUT entries after the application exits.<br /><br /><br />6) Verify that the FLEXlm product feature was really borrowed by running the following command on the client system: <br /><br />lmutil lmborrow –status<br /><br />Example for borrowing a seat for the Intel C++ Compiler for Linux*:<br /><br />lmutil lmborrow –status<br />lmutil - Copyright (c) 1989-2004 by Macrovision Corporation. All rights reserved.<br /><br />Vendor Feature Expiration<br />______ ________ __________<br /><br />INTEL CCompL 6-Oct-11 23:59<br /><br />NOTE: Before the Borrow period expires, the product will always get the license from the local storage for the Borrowed license seat when it tries to check-out license. The Client system on which the product is used does not need to be attached to FLEXlm* license host server.<br /><br /><br />7) Disconnect the client system from the server network. Now with the borrowed license, you can use the software application with the borrowed license.<br /><br />NOTE: After the Borrow period expires, the product license seat will no longer to be able to check-out the license from local storage. Instead, the client system must be “attached” to the FLEXlm* license host server to check-out a product license seat.<br /><br /><br />8) Run the following command to return a borrowed license: <br /><br />lmutil lmborrow -return -c server.lic featurename<br /><br />Example:<br />lmutil lmborrow -return -c server.lic CCompL<br />lmutil - Copyright (c) 1989-2009 by Macrovision Corporation. All rights reserved.<br /><br />On the FLEXlm server side, you will see the following message in the log file for the borrowed feature which was returned. This message is different compared to a normal check-in.<br /><br />14:40:17 (INTEL) REMOVING User1@Host1:/dev/pts/0 from CCompL by administrator request.<br /><br />14:40:17 (INTEL) IN: "CCompL" User1@Host1 (USER_REMOVED)<br />14:40:17 (INTEL) IN: "I3F97C15E" <a href="http://software.intel.commailto:User1@Host1">User1@Host1</a> (USER_REMOVED)<br /><br /><br />9) Run the following command to verify that the license was returned successfully back to the server: <br /><br />lmutil lmborrow -status<br /><br />Example:<br />./lmutil lmborrow -status<br />lmutil - Copyright (c) 1989-2009 by Macrovision Corporation. All rights reserved.<br /><br />Note: If you try to return a license which has not been borrowed, you will see a message like this:<br /><br />./lmutil lmborrow -return -c server.lic CCompL<br />lmutil - Copyright (c) 1989-2009 by Macrovision Corporation. All rights reserved.<br />Error: CCompL not currently borrowed.<br /><br /><br /> ]]></description>
      <link>http://software.intel.com/en-us/articles/intel-flexlm-license-borrowing-capability/</link>
      <pubDate>Fri, 06 Aug 2010 00:00:00 -0700</pubDate>
      <comments>http://software.intel.com/en-us/articles/intel-flexlm-license-borrowing-capability/#comments</comments>
      <guid isPermaLink="true">http://software.intel.com/en-us/articles/intel-flexlm-license-borrowing-capability/</guid>
      <category>Intel® TBB</category>
      <category>Intel® C++ Compiler for Linux* Knowledge Base</category>
      <category>Intel® C++ Compiler for Mac OS X* Knowledge Base</category>
      <category>Intel® C++ Compiler for Windows* Knowledge Base</category>
      <category>Intel® Fortran Compiler for Linux* Knowledge Base</category>
      <category>Intel® Fortran Compiler for Mac OS X* Knowledge Base</category>
      <category>Intel® Integrated Performance Primitives Knowledge Base</category>
      <category>Intel® License Manager for FLEXlm* Knowledge Base</category>
      <category>Intel® Math Kernel Library Knowledge Base</category>
      <category>Intel® Threading Building Blocks Knowledge Base</category>
      <category>Intel® Visual Fortran Compiler for Windows* Knowledge Base</category>
      <category>Intel® VTune™ Performance Analyzer for Linux* Knowledge Base</category>
      <category>Intel® VTune™ Performance Analyzer for Windows* Knowledge Base</category>
    </item>
    <item>
      <title>Converting an Evaluation License to a Fully Licensed Product Using the Intel Activation Tool (IAT)</title>
      <description><![CDATA[ <br />
<div id="art_pre_template"><b>Introduction : </b>This article describes how to convert an evaluation licensed product to a fully-licensed product using the Intel Activation Tool (IAT)<br /><br /><b>Prerequisites : </b>Any evaluation version of an Intel Developer Product.  A user should also obtain a valid Serial Number for a fully-licensed version of the product.  A Serial Number is supplied to the customer after purchase of a qualifying Intel Software product.<br />This applies to Windows*, Linux* and Mac OS* X versions of Intel Software tools.<b> </b><br /><br /><br /><b>Running the Application : </b><br /><br /><span class="sectionBody">Users of evaluation versions of Intel Developer Products have a new tool that allows converting an evaluation licensed products to fully licensed products.  The “Activation Tool” is a utility that allows a user of an evaluation product to enter a valid product Serial Number to convert the product to fully licensed status.  <br /><br />Under Windows:  Users will find a shortcut named “Product Activation” in their Start Menu Programs Group for “Parallel Studio 2011”. <br /><br />Simply click “Start-&gt;Program Files-&gt; Intel Parallel Studio 2011-&gt; Product Activation” shortcut in the start menu and supply a valid product serial number to convert your evaluation software to a fully licensed product.</span> <!--EndFragment--><br /><br /><b>Linux and Mac OS X:</b> Search for 'activate' executable in your binary directory for your product.  Run the executable and supply the serial number when prompted.<br /><br /><br /><b>Benefits : </b>A fully-licensed product provides a user access to Premier Support and product updates on the Intel Registration Center<br /><br /><br /><br /></div> ]]></description>
      <link>http://software.intel.com/en-us/articles/converting-an-evaluation-license-to-a-fully-licensed-product-using-the-intel-activation-tool-iat/</link>
      <pubDate>Mon, 26 Jul 2010 21:00:00 -0700</pubDate>
      <comments>http://software.intel.com/en-us/articles/converting-an-evaluation-license-to-a-fully-licensed-product-using-the-intel-activation-tool-iat/#comments</comments>
      <guid isPermaLink="true">http://software.intel.com/en-us/articles/converting-an-evaluation-license-to-a-fully-licensed-product-using-the-intel-activation-tool-iat/</guid>
      <category>Intel® Compilers</category>
      <category>Intel® C++ Compiler for Linux* Knowledge Base</category>
      <category>Intel® C++ Compiler for Mac OS X* Knowledge Base</category>
      <category>Intel® C++ Compiler for Windows* Knowledge Base</category>
      <category>Intel® Fortran Compiler for Linux* Knowledge Base</category>
      <category>Intel® Fortran Compiler for Mac OS X* Knowledge Base</category>
      <category>Intel® Parallel Composer Knowledge Base</category>
    </item>
  </channel></rss>
