<?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 Well, now from the terminal in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/MacOS-X-Catalina-ifort-linking-problem/m-p/1183427#M149466</link>
    <description>&lt;P&gt;&lt;BR /&gt;Well, now from the &lt;STRONG&gt;terminal&lt;/STRONG&gt; everything works but from &lt;STRONG&gt;xcode&lt;/STRONG&gt; I continue to have the usual error.&lt;/P&gt;&lt;P&gt;In &lt;EM&gt;Targets --&amp;gt; Build Phases --&amp;gt; Link Binary With Libraries&lt;/EM&gt; I have added&amp;nbsp;&lt;STRONG&gt;libfparser.a &lt;/STRONG&gt;and&amp;nbsp;I also tried changing the name to &lt;STRONG&gt;fparser &lt;/STRONG&gt;but the problem remains.&lt;/P&gt;&lt;P&gt;Obviously I set the directory for the .mod file and for the library:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Build Settings --&amp;gt; &amp;nbsp;Search Paths --&amp;gt; Header Search Paths --&amp;gt;&amp;nbsp;/usr/local/include/function_parser/&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Build Settings --&amp;gt; &amp;nbsp;Search Paths --&amp;gt; Library Search Paths --&amp;gt;&amp;nbsp;/usr/local/lib/&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;Ideas?&lt;/P&gt;&lt;P&gt;Thanks&amp;nbsp;Eva&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 07 Feb 2020 01:12:02 GMT</pubDate>
    <dc:creator>gragnani__eva</dc:creator>
    <dc:date>2020-02-07T01:12:02Z</dc:date>
    <item>
      <title>MacOS X Catalina ifort linking problem</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/MacOS-X-Catalina-ifort-linking-problem/m-p/1183422#M149461</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;my problem is that the linker fails with:&lt;BR /&gt;&lt;STRONG&gt;ld: library not found for -llibfparser.a&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;when I use:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ifort -L/usr/local/lib/ -I/usr/local/include/fparser-v1.1/ -llibfparser.a test.f90&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;if I compile&amp;nbsp;specifying the complete path all is OK&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ifort -I/usr/local/include/fparser-v1.1/ /usr/local/lib/libfparser.a test.f90&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;this gives me the correct executable file.&lt;/P&gt;&lt;P&gt;There are two modules that are correctly seen through the &lt;STRONG&gt;-I &lt;/STRONG&gt;switch what seems to not work is the &lt;STRONG&gt;-L&lt;/STRONG&gt; switch.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;(sorry for my English)&lt;/P&gt;</description>
      <pubDate>Thu, 06 Feb 2020 18:25:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/MacOS-X-Catalina-ifort-linking-problem/m-p/1183422#M149461</guid>
      <dc:creator>gragnani__eva</dc:creator>
      <dc:date>2020-02-06T18:25:24Z</dc:date>
    </item>
    <item>
      <title>try ordering -L and -l</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/MacOS-X-Catalina-ifort-linking-problem/m-p/1183423#M149462</link>
      <description>&lt;P&gt;try ordering -L and -l together like this:&lt;/P&gt;&lt;P&gt;ifort -I/usr/local/include/fparser-v1.1&amp;nbsp;-L/usr/local/lib&amp;nbsp;-llibfparser.a test.f90&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-L sets a library path and usually immediately preceeds the -l libraries.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Let me know if this works.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ron&lt;/P&gt;</description>
      <pubDate>Thu, 06 Feb 2020 21:42:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/MacOS-X-Catalina-ifort-linking-problem/m-p/1183423#M149462</guid>
      <dc:creator>Ron_Green</dc:creator>
      <dc:date>2020-02-06T21:42:00Z</dc:date>
    </item>
    <item>
      <title>The convention used by the</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/MacOS-X-Catalina-ifort-linking-problem/m-p/1183424#M149463</link>
      <description>&lt;P&gt;The convention used by the Linux linker &lt;STRONG&gt;ld&lt;/STRONG&gt; for specifying library files is that the library file name is obtained by adding the prefix &lt;STRONG&gt;lib&lt;/STRONG&gt; and adding the suffix &lt;STRONG&gt;.a&lt;/STRONG&gt; to the &lt;STRONG&gt;ld&lt;/STRONG&gt; argument prefixed by &lt;STRONG&gt;-l&lt;/STRONG&gt;. Thus, -lmath is shorthand for &lt;STRONG&gt;lib&lt;/STRONG&gt;math&lt;STRONG&gt;.a .&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;For more details of the -l command line option, see&amp;nbsp;https://ftp.gnu.org/old-gnu/Manuals/ld-2.9.1/html_mono/ld.html#SEC3 .&lt;/P&gt;</description>
      <pubDate>Thu, 06 Feb 2020 23:50:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/MacOS-X-Catalina-ifort-linking-problem/m-p/1183424#M149463</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2020-02-06T23:50:06Z</dc:date>
    </item>
    <item>
      <title>Thanks Ron, but unfortunately</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/MacOS-X-Catalina-ifort-linking-problem/m-p/1183425#M149464</link>
      <description>&lt;P&gt;Thanks Ron,&amp;nbsp;but unfortunately nothing changes, I still have&amp;nbsp;&lt;STRONG&gt;ld: library not found for -llibfparser.a.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Feb 2020 00:35:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/MacOS-X-Catalina-ifort-linking-problem/m-p/1183425#M149464</guid>
      <dc:creator>gragnani__eva</dc:creator>
      <dc:date>2020-02-07T00:35:23Z</dc:date>
    </item>
    <item>
      <title>Thanks mecej4, it works!</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/MacOS-X-Catalina-ifort-linking-problem/m-p/1183426#M149465</link>
      <description>&lt;P&gt;Thanks mecej4,&lt;STRONG&gt;&amp;nbsp;it works!&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;ifort -L/usr/local/lib/ -I/usr/local/include/fparser-v1.1/ &lt;STRONG&gt;-lfparser&lt;/STRONG&gt; test.f90&lt;/P&gt;&lt;P&gt;Eva&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Feb 2020 00:43:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/MacOS-X-Catalina-ifort-linking-problem/m-p/1183426#M149465</guid>
      <dc:creator>gragnani__eva</dc:creator>
      <dc:date>2020-02-07T00:43:39Z</dc:date>
    </item>
    <item>
      <title>Well, now from the terminal</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/MacOS-X-Catalina-ifort-linking-problem/m-p/1183427#M149466</link>
      <description>&lt;P&gt;&lt;BR /&gt;Well, now from the &lt;STRONG&gt;terminal&lt;/STRONG&gt; everything works but from &lt;STRONG&gt;xcode&lt;/STRONG&gt; I continue to have the usual error.&lt;/P&gt;&lt;P&gt;In &lt;EM&gt;Targets --&amp;gt; Build Phases --&amp;gt; Link Binary With Libraries&lt;/EM&gt; I have added&amp;nbsp;&lt;STRONG&gt;libfparser.a &lt;/STRONG&gt;and&amp;nbsp;I also tried changing the name to &lt;STRONG&gt;fparser &lt;/STRONG&gt;but the problem remains.&lt;/P&gt;&lt;P&gt;Obviously I set the directory for the .mod file and for the library:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Build Settings --&amp;gt; &amp;nbsp;Search Paths --&amp;gt; Header Search Paths --&amp;gt;&amp;nbsp;/usr/local/include/function_parser/&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Build Settings --&amp;gt; &amp;nbsp;Search Paths --&amp;gt; Library Search Paths --&amp;gt;&amp;nbsp;/usr/local/lib/&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;Ideas?&lt;/P&gt;&lt;P&gt;Thanks&amp;nbsp;Eva&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Feb 2020 01:12:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/MacOS-X-Catalina-ifort-linking-problem/m-p/1183427#M149466</guid>
      <dc:creator>gragnani__eva</dc:creator>
      <dc:date>2020-02-07T01:12:02Z</dc:date>
    </item>
    <item>
      <title>I do not have a Macintosh and</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/MacOS-X-Catalina-ifort-linking-problem/m-p/1183428#M149467</link>
      <description>&lt;P&gt;I do not have a Macintosh and cannot help you with Xcode. I do not understand what you mean by "the usual error".&lt;/P&gt;&lt;P&gt;Do note that Xcode is deprecated with the current compiler release, and will be unsupported in a future release, according to&amp;nbsp;https://software.intel.com/en-us/forums/intel-fortran-compiler/topic/844666 .&lt;/P&gt;</description>
      <pubDate>Sun, 09 Feb 2020 09:15:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/MacOS-X-Catalina-ifort-linking-problem/m-p/1183428#M149467</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2020-02-09T09:15:44Z</dc:date>
    </item>
    <item>
      <title>"the usual error" is: </title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/MacOS-X-Catalina-ifort-linking-problem/m-p/1183429#M149468</link>
      <description>&lt;P&gt;"the usual error" is:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ld: library not found for -llibfparser.a&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Another question, if Xcode is deprecated what IDE is available for MacOS? Eclipse, Visual Studio Code ...&lt;/P&gt;&lt;P&gt;Thanks Eva&lt;/P&gt;</description>
      <pubDate>Sun, 09 Feb 2020 14:11:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/MacOS-X-Catalina-ifort-linking-problem/m-p/1183429#M149468</guid>
      <dc:creator>gragnani__eva</dc:creator>
      <dc:date>2020-02-09T14:11:22Z</dc:date>
    </item>
    <item>
      <title>Quote:gragnani, eva wrote:</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/MacOS-X-Catalina-ifort-linking-problem/m-p/1183430#M149469</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;gragnani, eva wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"the usual error" is:&amp;nbsp;&lt;/P&gt;&lt;P&gt;ld: library not found for -llibfparser.a&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the place where you entered "libfparser.a" in Xcode, enter "fparser".&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;gragnani, eva wrote:&lt;BR /&gt;Another question, if Xcode is deprecated what IDE is available for MacOS? Eclipse, Visual Studio Code ...&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Whatever is available for MacOS. Someone else who is a Macintosh user will have to help you on that.&lt;/P&gt;</description>
      <pubDate>Sun, 09 Feb 2020 16:07:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/MacOS-X-Catalina-ifort-linking-problem/m-p/1183430#M149469</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2020-02-09T16:07:40Z</dc:date>
    </item>
    <item>
      <title>Thanks for the reply macej4,</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/MacOS-X-Catalina-ifort-linking-problem/m-p/1183431#M149470</link>
      <description>&lt;P&gt;Thanks for the reply macej4,&amp;nbsp;but the problem is that xcode has a dialog box for loading a file (that is the library) and doesn't allow you to specify a name.&lt;/P&gt;</description>
      <pubDate>Sun, 09 Feb 2020 22:07:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/MacOS-X-Catalina-ifort-linking-problem/m-p/1183431#M149470</guid>
      <dc:creator>gragnani__eva</dc:creator>
      <dc:date>2020-02-09T22:07:31Z</dc:date>
    </item>
  </channel>
</rss>

