<?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 Strange debug location in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Strange-debug-location/m-p/811500#M42938</link>
    <description>Jim,&lt;BR /&gt;&lt;BR /&gt;how can I be stepping into a C Runtime Library on this simple assignment statement?&lt;BR /&gt;&lt;BR /&gt;I am not including any C projects in my application, althoughI am using RealWin. I have all the source files, several are which areCfiles, but nothing with this name, and definetely not with anything on F:, which does not exist on my system.&lt;BR /&gt;&lt;BR /&gt;It is a mystery where this link comes from.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;David&lt;BR /&gt;</description>
    <pubDate>Mon, 17 Oct 2011 23:41:22 GMT</pubDate>
    <dc:creator>DavidWhite</dc:creator>
    <dc:date>2011-10-17T23:41:22Z</dc:date>
    <item>
      <title>Strange debug location</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Strange-debug-location/m-p/811498#M42936</link>
      <description>While trying to debug my code, I stopped at the line&lt;BR /&gt;CARATIO=.FALSE.&lt;BR /&gt;On pressing F11, debugger attempts to debug a location that is not part of my code, and is not even a location on my system:&lt;BR /&gt;f:\\dd\\vctools\\crt_bld\\self_x86\\crt\\src\\gs_support.c&lt;BR /&gt;What's happening here?&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;David</description>
      <pubDate>Mon, 17 Oct 2011 01:08:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Strange-debug-location/m-p/811498#M42936</guid>
      <dc:creator>DavidWhite</dc:creator>
      <dc:date>2011-10-17T01:08:32Z</dc:date>
    </item>
    <item>
      <title>Strange debug location</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Strange-debug-location/m-p/811499#M42937</link>
      <description>F11 is stepping into a C Runtime Library function which was built on someone else's system. The Debug information in the object file (within the library) is pointing to the path as used on the other system. &lt;BR /&gt;&lt;BR /&gt;Either use F10 (i.e. do not step into)&lt;BR /&gt;&lt;BR /&gt;Or, if you have the source to this library located elsewhere on your system, the debugger has a property sheet where you can specify alternate locations for program source files. (use this property to point to the location of your copy of this source file (gs_support.c)&lt;BR /&gt;&lt;BR /&gt;Jim Dempsey&lt;BR /&gt;</description>
      <pubDate>Mon, 17 Oct 2011 11:32:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Strange-debug-location/m-p/811499#M42937</guid>
      <dc:creator>jimdempseyatthecove</dc:creator>
      <dc:date>2011-10-17T11:32:28Z</dc:date>
    </item>
    <item>
      <title>Strange debug location</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Strange-debug-location/m-p/811500#M42938</link>
      <description>Jim,&lt;BR /&gt;&lt;BR /&gt;how can I be stepping into a C Runtime Library on this simple assignment statement?&lt;BR /&gt;&lt;BR /&gt;I am not including any C projects in my application, althoughI am using RealWin. I have all the source files, several are which areCfiles, but nothing with this name, and definetely not with anything on F:, which does not exist on my system.&lt;BR /&gt;&lt;BR /&gt;It is a mystery where this link comes from.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;David&lt;BR /&gt;</description>
      <pubDate>Mon, 17 Oct 2011 23:41:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Strange-debug-location/m-p/811500#M42938</guid>
      <dc:creator>DavidWhite</dc:creator>
      <dc:date>2011-10-17T23:41:22Z</dc:date>
    </item>
    <item>
      <title>Strange debug location</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Strange-debug-location/m-p/811501#M42939</link>
      <description>F: (and path) is that of the machine of the developer that produced the library function.&lt;BR /&gt;This could be someone from Microsoft, Intel, etc...&lt;BR /&gt;The library is loaded/linked because the file name appears with the debug information in your file.&lt;BR /&gt;&lt;BR /&gt;If you can place a break point at this statement and then run to this statement without going to la la land, then run to break, open a dissassembly window, and step into (F11) with that window open until you see the next statement is a program transfer (branch, call, ret, jmp, ...). See if the transferwill beinto this library or out of your program.&lt;BR /&gt;&lt;BR /&gt;If your statement has a goofy branch... then possibly your code got overwritten by something.&lt;BR /&gt;&lt;BR /&gt;If nothing unusual appears...&lt;BR /&gt;&lt;BR /&gt;Get pen and paper (or open newtext file in the IDE)&lt;BR /&gt;Do the F11 thing *** and write down where you are in the code, include the hex address. Doing copy and paste with the mouse works. &lt;BR /&gt;&lt;BR /&gt;If youdiscover a ret instruction takesyou into thegoofy routine then this indicates that your code destroyed the return address on the stack.&lt;BR /&gt;&lt;BR /&gt;This will be a good learning experience for you.&lt;BR /&gt;Reading dissassembly is not as hard as it looks.&lt;BR /&gt;&lt;BR /&gt;Jim Dempsey&lt;BR /&gt;</description>
      <pubDate>Tue, 18 Oct 2011 00:35:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Strange-debug-location/m-p/811501#M42939</guid>
      <dc:creator>jimdempseyatthecove</dc:creator>
      <dc:date>2011-10-18T00:35:40Z</dc:date>
    </item>
  </channel>
</rss>

