<?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 How to migrate from compaq compiler to intel compiler in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-migrate-from-compaq-compiler-to-intel-compiler/m-p/806502#M40445</link>
    <description>&lt;DIV id="_mcePaste"&gt;Hi,&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;Thanks again for your reply.&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;Unfortunately the proposed solution did not solve the issue ...&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;I do not know what else can I do ....&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;BR /&gt;</description>
    <pubDate>Fri, 04 Jun 2010 14:26:37 GMT</pubDate>
    <dc:creator>hasm</dc:creator>
    <dc:date>2010-06-04T14:26:37Z</dc:date>
    <item>
      <title>How to migrate from compaq compiler to intel compiler</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-migrate-from-compaq-compiler-to-intel-compiler/m-p/806495#M40438</link>
      <description>Hi,
I recently changed to intel compiler but my project doesn't work very good.
It compiles but wen i run it stops on a function from netcdf and returns the error :
Unhandled exception at 0x0095d540 in ConvertToHdf5.exe: 0xC0000005: Access violation reading location 0x00000030.
Can anyone help with this issue?
Tanks in advanced.
Helder Marques</description>
      <pubDate>Wed, 02 Jun 2010 16:17:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-migrate-from-compaq-compiler-to-intel-compiler/m-p/806495#M40438</guid>
      <dc:creator>hasm</dc:creator>
      <dc:date>2010-06-02T16:17:45Z</dc:date>
    </item>
    <item>
      <title>How to migrate from compaq compiler to intel compiler</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-migrate-from-compaq-compiler-to-intel-compiler/m-p/806496#M40439</link>
      <description>Did you read Steve's &lt;A href="http://software.intel.com/en-us/articles/migrating-from-compaq-visual-fortran/"&gt;advice on conversion&lt;/A&gt; ? Among possible issues discussed there is the default SAVE setting of CVF (and certain other past compilers). The run-time /check options, and possibly the compile-time /Qdiag-enable:sc might help in finding errors which may not have surfaced before.</description>
      <pubDate>Wed, 02 Jun 2010 16:48:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-migrate-from-compaq-compiler-to-intel-compiler/m-p/806496#M40439</guid>
      <dc:creator>TimP</dc:creator>
      <dc:date>2010-06-02T16:48:51Z</dc:date>
    </item>
    <item>
      <title>How to migrate from compaq compiler to intel compiler</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-migrate-from-compaq-compiler-to-intel-compiler/m-p/806497#M40440</link>
      <description>&lt;P&gt;Yes, i did.&lt;/P&gt;&lt;P&gt;The build gives no errors, but when it comes to running a function of netcdf and there gives me the error Unhandled exception at 0x0095d540 in ConvertToHdf5.exe: 0xC0000005: Access violation reading location 0x00000000.&lt;BR /&gt;&lt;BR /&gt;And i dont undestand why&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Helder Marques&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jun 2010 17:43:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-migrate-from-compaq-compiler-to-intel-compiler/m-p/806497#M40440</guid>
      <dc:creator>hasm</dc:creator>
      <dc:date>2010-06-02T17:43:40Z</dc:date>
    </item>
    <item>
      <title>How to migrate from compaq compiler to intel compiler</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-migrate-from-compaq-compiler-to-intel-compiler/m-p/806498#M40441</link>
      <description>Different compilers use different default calling conventions. Most compilers also allow changing the calling conventions by choosing optional compiler switches or directives in the source code. The trick is to (i) find out what the expected calling conventions are for NETCDF, and (ii) to get the Intel compiler to emit code following those conventions. If you are willing to compile NETCDF from source, you have additional flexibility.&lt;BR /&gt;&lt;BR /&gt;That you got a C0000005 error with pointer values of 0x00000000 (a.k.a. NULL pointer) and 0x00000030 -- an uncommonly low value for an address -- suggests one possibility: are any of the arguments in a call to a NETCDF routine CHARACTER type arguments? &lt;BR /&gt;&lt;BR /&gt;If so, you have to deal with the fact that CVF and IVF use slightly different default conventions for passing the hidden string length arguments of the character variables. This, too, may be corrected with a properly selected compiler switch.</description>
      <pubDate>Wed, 02 Jun 2010 18:01:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-migrate-from-compaq-compiler-to-intel-compiler/m-p/806498#M40441</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2010-06-02T18:01:37Z</dc:date>
    </item>
    <item>
      <title>How to migrate from compaq compiler to intel compiler</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-migrate-from-compaq-compiler-to-intel-compiler/m-p/806499#M40442</link>
      <description>Hi,&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Tanks for the reply.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Sorry, but could you be more specific about the way to how can i resolve my issue.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Tanks in advanced.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Helder Marques&lt;/DIV&gt;</description>
      <pubDate>Fri, 04 Jun 2010 08:38:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-migrate-from-compaq-compiler-to-intel-compiler/m-p/806499#M40442</guid>
      <dc:creator>hasm</dc:creator>
      <dc:date>2010-06-04T08:38:33Z</dc:date>
    </item>
    <item>
      <title>How to migrate from compaq compiler to intel compiler</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-migrate-from-compaq-compiler-to-intel-compiler/m-p/806500#M40443</link>
      <description>Hi,&lt;DIV&gt;After reading your answer more carefully, i realized that your assumption is correct, the error is given by the call of a function passing as arguments a set of characters(string).Im going to better analyze the settings of the project, however if you could give some more information abouthow to properly selected compiler switch&lt;/DIV&gt;</description>
      <pubDate>Fri, 04 Jun 2010 11:06:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-migrate-from-compaq-compiler-to-intel-compiler/m-p/806500#M40443</guid>
      <dc:creator>hasm</dc:creator>
      <dc:date>2010-06-04T11:06:20Z</dc:date>
    </item>
    <item>
      <title>How to migrate from compaq compiler to intel compiler</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-migrate-from-compaq-compiler-to-intel-compiler/m-p/806501#M40444</link>
      <description>The Intel Fortran User's Guide has a chapter on mixed-language programming. To give you a specific answer I'd have to look at the NetCDF sources -- something that I am not interested in doing at this time.&lt;BR /&gt;&lt;BR /&gt;For subroutine/function calls with CHARACTER type arguments, the length of each character variable (measured in characters) is passed as an extra argument. Different compilers have different conventions as to whether each length follows immediately after the address of the argument (style A) or, as most compilers do, append all the lengths to the end of the argument list (style B).&lt;BR /&gt;&lt;BR /&gt;On the C side, with style B, if there is no need to know the length of the character argument (note that there is no terminal zero byte as in C strings), the length parameters can be ignored. If style A is used, the C code will have to have provisions for processing these extra length-arguments.&lt;BR /&gt;&lt;BR /&gt;Having said that, let me bring to your attention this IFort option:&lt;BR /&gt;&lt;BR /&gt;-[no]mixed-str-len-arg&lt;BR /&gt; indicate whether hidden lengths are passed after their&lt;BR /&gt; character argument or after all arguments.&lt;BR /&gt;&lt;BR /&gt;If your project worked correctly with CVF, that may be the magic fix that you are looking for. No guarantees, however!&lt;BR /&gt;</description>
      <pubDate>Fri, 04 Jun 2010 12:21:34 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-migrate-from-compaq-compiler-to-intel-compiler/m-p/806501#M40444</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2010-06-04T12:21:34Z</dc:date>
    </item>
    <item>
      <title>How to migrate from compaq compiler to intel compiler</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-migrate-from-compaq-compiler-to-intel-compiler/m-p/806502#M40445</link>
      <description>&lt;DIV id="_mcePaste"&gt;Hi,&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;Thanks again for your reply.&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;Unfortunately the proposed solution did not solve the issue ...&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;I do not know what else can I do ....&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 04 Jun 2010 14:26:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-migrate-from-compaq-compiler-to-intel-compiler/m-p/806502#M40445</guid>
      <dc:creator>hasm</dc:creator>
      <dc:date>2010-06-04T14:26:37Z</dc:date>
    </item>
    <item>
      <title>How to migrate from compaq compiler to intel compiler</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-migrate-from-compaq-compiler-to-intel-compiler/m-p/806503#M40446</link>
      <description>If you look here &lt;A href="http://www.mohid.com/wiki/index.php?title=Netcdf#in_windows" target="_blank"&gt;http://www.mohid.com/wiki/index.php?title=Netcdf#in_windows&lt;/A&gt;&lt;BR /&gt;you will find help on the problems you may find when compiling using IFORT rather than the recommended CVF.&lt;BR /&gt;&lt;BR /&gt;(found using a Google search for 'converttohdf5')</description>
      <pubDate>Fri, 04 Jun 2010 15:05:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-migrate-from-compaq-compiler-to-intel-compiler/m-p/806503#M40446</guid>
      <dc:creator>anthonyrichards</dc:creator>
      <dc:date>2010-06-04T15:05:01Z</dc:date>
    </item>
    <item>
      <title>How to migrate from compaq compiler to intel compiler</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-migrate-from-compaq-compiler-to-intel-compiler/m-p/806504#M40447</link>
      <description>Hi,&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV id="_mcePaste"&gt;Thanks for the suggestion.&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;If you read the previous post's, you will see that the error I describe is not mentioned in MohidWiki.&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 04 Jun 2010 15:13:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/How-to-migrate-from-compaq-compiler-to-intel-compiler/m-p/806504#M40447</guid>
      <dc:creator>hasm</dc:creator>
      <dc:date>2010-06-04T15:13:51Z</dc:date>
    </item>
  </channel>
</rss>

