<?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 Compile Errors in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Compile-Errors/m-p/799409#M36985</link>
    <description>Good Day,&lt;BR /&gt;&lt;BR /&gt;I get the following errors when trying to compile a gateway mex file and I'm not sure why. Any help is appreciated:&lt;BR /&gt;&lt;BR /&gt;aerocalc.f90(8): error #5082: Syntax error, found IDENTIFIER 'PLHS' when expecting one of: ( % [ : . = =&amp;gt; &lt;BR /&gt;mwpointer plhs(*), prhs(*) &lt;BR /&gt;----------^ &lt;BR /&gt;aerocalc.f90(14): error #5082: Syntax error, found IDENTIFIER 'MXCREATEDOUBLEMATRIX' when expecting one of: ( % [ : . = =&amp;gt; &lt;BR /&gt;mwpointer mxcreatedoublematrix, mxgetpr &lt;BR /&gt;----------^ &lt;BR /&gt;aerocalc.f90(15): error #5082: Syntax error, found IDENTIFIER 'MXGETM' when expecting one of: ( % [ : . = =&amp;gt; &lt;BR /&gt;mwpointer mxgetm, mxgetn &lt;BR /&gt;----------^ &lt;BR /&gt;aerocalc.f90(17): error #5082: Syntax error, found IDENTIFIER 'TURBINECOMPONENTS_PR' when expecting one of: ( % [ : . = =&amp;gt; &lt;BR /&gt;mwpointer turbinecomponents_pr, y_pr &lt;BR /&gt;----------^ &lt;BR /&gt;aerocalc.f90(20): error #5082: Syntax error, found IDENTIFIER 'M' when expecting one of: ( % [ : . = =&amp;gt; &lt;BR /&gt;mwpointer m, n &lt;BR /&gt;----------^ &lt;BR /&gt;aerocalc.f90(21): error #5082: Syntax error, found IDENTIFIER 'SIZE' when expecting one of: ( % [ : . = =&amp;gt; &lt;BR /&gt;mwsize size &lt;BR /&gt;-------^ &lt;BR /&gt;</description>
    <pubDate>Mon, 18 Jun 2012 18:45:34 GMT</pubDate>
    <dc:creator>cptfisher</dc:creator>
    <dc:date>2012-06-18T18:45:34Z</dc:date>
    <item>
      <title>Compile Errors</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Compile-Errors/m-p/799409#M36985</link>
      <description>Good Day,&lt;BR /&gt;&lt;BR /&gt;I get the following errors when trying to compile a gateway mex file and I'm not sure why. Any help is appreciated:&lt;BR /&gt;&lt;BR /&gt;aerocalc.f90(8): error #5082: Syntax error, found IDENTIFIER 'PLHS' when expecting one of: ( % [ : . = =&amp;gt; &lt;BR /&gt;mwpointer plhs(*), prhs(*) &lt;BR /&gt;----------^ &lt;BR /&gt;aerocalc.f90(14): error #5082: Syntax error, found IDENTIFIER 'MXCREATEDOUBLEMATRIX' when expecting one of: ( % [ : . = =&amp;gt; &lt;BR /&gt;mwpointer mxcreatedoublematrix, mxgetpr &lt;BR /&gt;----------^ &lt;BR /&gt;aerocalc.f90(15): error #5082: Syntax error, found IDENTIFIER 'MXGETM' when expecting one of: ( % [ : . = =&amp;gt; &lt;BR /&gt;mwpointer mxgetm, mxgetn &lt;BR /&gt;----------^ &lt;BR /&gt;aerocalc.f90(17): error #5082: Syntax error, found IDENTIFIER 'TURBINECOMPONENTS_PR' when expecting one of: ( % [ : . = =&amp;gt; &lt;BR /&gt;mwpointer turbinecomponents_pr, y_pr &lt;BR /&gt;----------^ &lt;BR /&gt;aerocalc.f90(20): error #5082: Syntax error, found IDENTIFIER 'M' when expecting one of: ( % [ : . = =&amp;gt; &lt;BR /&gt;mwpointer m, n &lt;BR /&gt;----------^ &lt;BR /&gt;aerocalc.f90(21): error #5082: Syntax error, found IDENTIFIER 'SIZE' when expecting one of: ( % [ : . = =&amp;gt; &lt;BR /&gt;mwsize size &lt;BR /&gt;-------^ &lt;BR /&gt;</description>
      <pubDate>Mon, 18 Jun 2012 18:45:34 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Compile-Errors/m-p/799409#M36985</guid>
      <dc:creator>cptfisher</dc:creator>
      <dc:date>2012-06-18T18:45:34Z</dc:date>
    </item>
    <item>
      <title>Compile Errors</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Compile-Errors/m-p/799410#M36986</link>
      <description>You probably did not add&lt;BR /&gt;&lt;BR /&gt; include 'fintrf.h'&lt;BR /&gt;&lt;BR /&gt;to your source file or, if you are using C style includes, did not specify that the C preprocessor shoud be used.&lt;BR /&gt;&lt;BR /&gt;By themselves (i.e., without the header file defining 'mwpointer') the lines that you show are not valid Fortran declarations.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 18 Jun 2012 18:54:57 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Compile-Errors/m-p/799410#M36986</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2012-06-18T18:54:57Z</dc:date>
    </item>
    <item>
      <title>Compile Errors</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Compile-Errors/m-p/799411#M36987</link>
      <description>try replacing mwpointer and mwsize with INTEGER(INT_PTR_KIND())</description>
      <pubDate>Mon, 18 Jun 2012 18:55:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Compile-Errors/m-p/799411#M36987</guid>
      <dc:creator>JVanB</dc:creator>
      <dc:date>2012-06-18T18:55:07Z</dc:date>
    </item>
    <item>
      <title>Compile Errors</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Compile-Errors/m-p/799412#M36988</link>
      <description>It worked. I forgot about including that tag. Thanks</description>
      <pubDate>Tue, 19 Jun 2012 17:43:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Compile-Errors/m-p/799412#M36988</guid>
      <dc:creator>cptfisher</dc:creator>
      <dc:date>2012-06-19T17:43:14Z</dc:date>
    </item>
  </channel>
</rss>

