<?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 Premier reference number is in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/64-bit-debugging-not-working/m-p/1028490#M109927</link>
    <description>&lt;P&gt;Premier reference number is&amp;nbsp;&lt;SPAN style="color: rgb(51, 153, 51); font-family: Verdana; font-size: 11px; font-weight: bold; line-height: normal;"&gt;6000053249&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Sun, 01 Jun 2014 02:58:08 GMT</pubDate>
    <dc:creator>RobP</dc:creator>
    <dc:date>2014-06-01T02:58:08Z</dc:date>
    <item>
      <title>64 bit debugging not working</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/64-bit-debugging-not-working/m-p/1028481#M109918</link>
      <description>&lt;P&gt;I'm using &lt;STRONG&gt;Intel Visual Fortran Composer XE 2013 SP1 Update 3&amp;nbsp;&lt;/STRONG&gt;and debugging in &lt;STRONG&gt;Visual Studio 2013 Update 2&lt;/STRONG&gt;'s IDE with this simple program:&lt;/P&gt;

&lt;PRE class="brush:fortran;"&gt;    program Console1

    implicit none

    ! Variables
    integer(4) testInt
    ! Body of Console1
    print *, 'Hello World'
    testInt = 7
    end program Console1&lt;/PRE&gt;

&lt;P&gt;When the EXE for this program is compiled with the "IA 32" (the &lt;EM&gt;Win32 &lt;/EM&gt;platform) ifort compiler, the debugging works as expected. The watch on `testInt` changes from a random value to 7.&lt;/P&gt;

&lt;P&gt;But, when I use the "Intel (R) 64" (the &lt;EM&gt;x64 &lt;/EM&gt;platform) compiler by setting the project to the x64 platform, the debugger will stop at correct break points. But the watch on `testInt` reports "Undefined address" instead of 7.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;What's going on here? How can I enable correct debugging for 64 bit Fortran compilations? This is interfering with COM Server development where the COM client and server must be 64-bit.&lt;/P&gt;</description>
      <pubDate>Thu, 29 May 2014 23:48:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/64-bit-debugging-not-working/m-p/1028481#M109918</guid>
      <dc:creator>RobP</dc:creator>
      <dc:date>2014-05-29T23:48:56Z</dc:date>
    </item>
    <item>
      <title>In the Locals window, what</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/64-bit-debugging-not-working/m-p/1028482#M109919</link>
      <description>&lt;P&gt;In the Locals window, what does the "Type" of TESTINT show as? There is not anything special you need to do to enable 64-bit debugging. Are you sure this is a Debug configuration?&lt;/P&gt;</description>
      <pubDate>Fri, 30 May 2014 00:35:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/64-bit-debugging-not-working/m-p/1028482#M109919</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2014-05-30T00:35:17Z</dc:date>
    </item>
    <item>
      <title>In 32 bit, TESTINT is an</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/64-bit-debugging-not-working/m-p/1028483#M109920</link>
      <description>&lt;P&gt;In 32 bit, TESTINT is an INTEGER(4) in the Locals window.&lt;BR /&gt;
	In 64 bit, the "Type" column is empty, and the value is "Undefined Address."&lt;BR /&gt;
	&lt;BR /&gt;
	I'm as sure as I can be that it's a Debug configuration. Optimizations are off (/Od) and /debug:full is on.&lt;/P&gt;

&lt;P&gt;/nologo /debug:full /Od /warn:interfaces /module:"x64\Debug\\" /object:"x64\Debug\\" /Fd"x64\Debug\vc120.pdb" /traceback /check:bounds /check:stack /libs:dll /threads /dbglibs /c&lt;/P&gt;

&lt;P&gt;Linker is set flagged /DEBUG:&lt;/P&gt;

&lt;P&gt;/OUT:"x64\Debug\Console1.exe" /INCREMENTAL:NO /NOLOGO /MANIFEST /MANIFESTFILE:"C:\Users\Rob\Documents\Visual Studio 2013\Projects\Console1\Console1\x64\Debug\Console1.exe.intermediate.manifest" /MANIFESTUAC:"level='asInvoker' uiAccess='false'" /DEBUG /PDB:"C:\Users\Rob\Documents\Visual Studio 2013\Projects\Console1\Console1\x64\Debug\Console1.pdb" /SUBSYSTEM:CONSOLE /IMPLIB:"C:\Users\Rob\Documents\Visual Studio 2013\Projects\Console1\Console1\x64\Debug\Console1.lib"&lt;/P&gt;

&lt;P&gt;Compiler output is:&lt;/P&gt;

&lt;P&gt;1&amp;gt;------ Rebuild All started: Project: Console1, Configuration: Debug x64 ------&lt;BR /&gt;
	1&amp;gt;Deleting intermediate files and output files for project 'Console1', configuration 'Debug|x64'.&lt;BR /&gt;
	1&amp;gt;Compiling with Intel(R) Visual Fortran Compiler XE 14.0.3.202 [Intel(R) 64]...&lt;BR /&gt;
	1&amp;gt;Console1.f90&lt;BR /&gt;
	1&amp;gt;Linking...&lt;BR /&gt;
	1&amp;gt;Embedding manifest...&lt;BR /&gt;
	1&amp;gt;&lt;BR /&gt;
	1&amp;gt;Build log written to &amp;nbsp;"file://C:\Users\Rob\Documents\Visual Studio 2013\Projects\Console1\Console1\x64\Debug\BuildLog.htm"&lt;BR /&gt;
	1&amp;gt;Console1 - 0 error(s), 0 warning(s)&lt;BR /&gt;
	========== Rebuild All: 1 succeeded, 0 failed, 0 skipped ==========&lt;/P&gt;</description>
      <pubDate>Fri, 30 May 2014 01:18:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/64-bit-debugging-not-working/m-p/1028483#M109920</guid>
      <dc:creator>RobP</dc:creator>
      <dc:date>2014-05-30T01:18:00Z</dc:date>
    </item>
    <item>
      <title>Try an uninstall and</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/64-bit-debugging-not-working/m-p/1028484#M109921</link>
      <description>&lt;P&gt;Try an uninstall and reinstall of Fortran and see if that helps. If not, I'll suggest other things to try. I don't recall hearing of this particular symptom before.&lt;/P&gt;</description>
      <pubDate>Fri, 30 May 2014 01:25:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/64-bit-debugging-not-working/m-p/1028484#M109921</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2014-05-30T01:25:33Z</dc:date>
    </item>
    <item>
      <title>I've done that already. The</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/64-bit-debugging-not-working/m-p/1028485#M109922</link>
      <description>&lt;P&gt;I've done that already. The symptom didn't change.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 30 May 2014 02:19:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/64-bit-debugging-not-working/m-p/1028485#M109922</guid>
      <dc:creator>RobP</dc:creator>
      <dc:date>2014-05-30T02:19:43Z</dc:date>
    </item>
    <item>
      <title>I can reproduce this after</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/64-bit-debugging-not-working/m-p/1028486#M109923</link>
      <description>&lt;P&gt;I can reproduce this after installing VS2013 Update 2. Escalated to development as issue DPD200257062. Right now the only thing I can think of is to revert to VS2013 Update 1.&lt;/P&gt;</description>
      <pubDate>Fri, 30 May 2014 18:23:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/64-bit-debugging-not-working/m-p/1028486#M109923</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2014-05-30T18:23:17Z</dc:date>
    </item>
    <item>
      <title>You can uninstall Update 2 in</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/64-bit-debugging-not-working/m-p/1028487#M109924</link>
      <description>&lt;P&gt;You can uninstall Update 2 in Programs and Features &amp;gt; View Installed Updates. If you do that, x64 debugging will return. I'll let you know when I find out more about the problem.&lt;/P&gt;</description>
      <pubDate>Fri, 30 May 2014 19:36:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/64-bit-debugging-not-working/m-p/1028487#M109924</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2014-05-30T19:36:17Z</dc:date>
    </item>
    <item>
      <title>That worked with the toy</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/64-bit-debugging-not-working/m-p/1028488#M109925</link>
      <description>&lt;P&gt;That worked with the toy program I used. I'll try it now with the COM Server.&amp;nbsp;&lt;BR /&gt;
	&lt;BR /&gt;
	There are upgrade features in Update 2 that I absolutely now need for other development. Is the issue flagged as connected to my Premier account?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 31 May 2014 23:48:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/64-bit-debugging-not-working/m-p/1028488#M109925</guid>
      <dc:creator>RobP</dc:creator>
      <dc:date>2014-05-31T23:48:00Z</dc:date>
    </item>
    <item>
      <title>No, it isn't connected to</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/64-bit-debugging-not-working/m-p/1028489#M109926</link>
      <description>&lt;P&gt;No, it isn't connected to your Premier account. Please enter a Premier issue about this and ask that it be assigned to me. I'll take care of it from there.&lt;/P&gt;</description>
      <pubDate>Sun, 01 Jun 2014 01:05:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/64-bit-debugging-not-working/m-p/1028489#M109926</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2014-06-01T01:05:12Z</dc:date>
    </item>
    <item>
      <title>Premier reference number is</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/64-bit-debugging-not-working/m-p/1028490#M109927</link>
      <description>&lt;P&gt;Premier reference number is&amp;nbsp;&lt;SPAN style="color: rgb(51, 153, 51); font-family: Verdana; font-size: 11px; font-weight: bold; line-height: normal;"&gt;6000053249&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 01 Jun 2014 02:58:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/64-bit-debugging-not-working/m-p/1028490#M109927</guid>
      <dc:creator>RobP</dc:creator>
      <dc:date>2014-06-01T02:58:08Z</dc:date>
    </item>
    <item>
      <title>Got it.</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/64-bit-debugging-not-working/m-p/1028491#M109928</link>
      <description>&lt;P&gt;Got it.&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jun 2014 13:46:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/64-bit-debugging-not-working/m-p/1028491#M109928</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2014-06-02T13:46:37Z</dc:date>
    </item>
    <item>
      <title>I have the same problem. Can</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/64-bit-debugging-not-working/m-p/1028492#M109929</link>
      <description>&lt;P&gt;I have the same problem. Can I be notified when a solution is available?&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jun 2014 13:11:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/64-bit-debugging-not-working/m-p/1028492#M109929</guid>
      <dc:creator>Karen_K_1</dc:creator>
      <dc:date>2014-06-11T13:11:56Z</dc:date>
    </item>
    <item>
      <title>The developers fixed the</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/64-bit-debugging-not-working/m-p/1028493#M109930</link>
      <description>&lt;P&gt;The developers fixed the problem, the fix should appear in update 4. I had asked the developers if they'd be willing to make the fix available separately for affected users, but have not heard back from them. I will ping them on this.&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jun 2014 13:35:30 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/64-bit-debugging-not-working/m-p/1028493#M109930</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2014-06-11T13:35:30Z</dc:date>
    </item>
    <item>
      <title>I've received the fix and</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/64-bit-debugging-not-working/m-p/1028494#M109931</link>
      <description>&lt;P&gt;I've received the fix and tested it. I've already provided it to Robert through Intel Premier Support. Karen, please open an Intel Premier Support issue on this and ask that it be assigned to me, and I'll get you the fix as well. FWIW, the fix also seems to work with the beta 2015 compiler install.&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jun 2014 15:29:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/64-bit-debugging-not-working/m-p/1028494#M109931</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2014-06-11T15:29:50Z</dc:date>
    </item>
    <item>
      <title>OK; I'll apply Update 2 to</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/64-bit-debugging-not-working/m-p/1028495#M109932</link>
      <description>&lt;P&gt;OK; I'll apply Update 2 to VS2013 and then the DLL.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jun 2014 15:44:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/64-bit-debugging-not-working/m-p/1028495#M109932</guid>
      <dc:creator>RobP</dc:creator>
      <dc:date>2014-06-11T15:44:21Z</dc:date>
    </item>
    <item>
      <title>Ok I will open an Intel</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/64-bit-debugging-not-working/m-p/1028496#M109933</link>
      <description>&lt;P&gt;Ok I will open an Intel Premier Support issue and have it assigned to you. Thanks.&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jun 2014 15:53:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/64-bit-debugging-not-working/m-p/1028496#M109933</guid>
      <dc:creator>Karen_K_1</dc:creator>
      <dc:date>2014-06-11T15:53:32Z</dc:date>
    </item>
    <item>
      <title>Karen, if you tell me the</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/64-bit-debugging-not-working/m-p/1028497#M109934</link>
      <description>&lt;P&gt;Karen, if you tell me the issue number once you have it, I can get to it faster.&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jun 2014 15:55:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/64-bit-debugging-not-working/m-p/1028497#M109934</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2014-06-11T15:55:31Z</dc:date>
    </item>
    <item>
      <title>I can't seem to submit an</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/64-bit-debugging-not-working/m-p/1028498#M109935</link>
      <description>&lt;P&gt;I can't seem to submit an issue on Premier Support. No matter what I try on Step 1 "Select Product &amp;amp; Contact" I can't get to the next step. If I enter the product name and hit the Search button nothing happens, if I hit the Next button nothing happens. If I click the "Browse Products" link a window pops up but no products are listed. Is there something I am doing wrong?&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jun 2014 21:12:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/64-bit-debugging-not-working/m-p/1028498#M109935</guid>
      <dc:creator>Karen_K_1</dc:creator>
      <dc:date>2014-06-11T21:12:20Z</dc:date>
    </item>
    <item>
      <title>Karen, I'll send you a</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/64-bit-debugging-not-working/m-p/1028499#M109936</link>
      <description>&lt;P&gt;Karen, I'll send you a private message to try to help you.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Jun 2014 00:41:34 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/64-bit-debugging-not-working/m-p/1028499#M109936</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2014-06-12T00:41:34Z</dc:date>
    </item>
    <item>
      <title>Hi Steve,</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/64-bit-debugging-not-working/m-p/1028500#M109937</link>
      <description>&lt;P&gt;Hi Steve,&lt;/P&gt;

&lt;P&gt;I wish I had discovered this thread before wasting time on VS2013 update 2! Will Composer XE update 4 be released soon?&lt;/P&gt;

&lt;P&gt;Cheers, Geoff&lt;/P&gt;</description>
      <pubDate>Wed, 25 Jun 2014 05:21:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/64-bit-debugging-not-working/m-p/1028500#M109937</guid>
      <dc:creator>Geoff_Hall</dc:creator>
      <dc:date>2014-06-25T05:21:28Z</dc:date>
    </item>
  </channel>
</rss>

