<?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 Re: Watching a variable change while debugging in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Watching-a-variable-change-while-debugging/m-p/784448#M29360</link>
    <description>Once it has been escalated, it is sent to the developers and you typically won't get more feedback until the developer either fixes the problem or needs clarification. As it happens, I've spoken with the developer in question on this issue in the past and I know he's aware of it. I'll try to find out where he is with it. But please do submit the issue, as the more customers who complain, the higher the priority is. When you do,. tell them that the reference is T68496.&lt;BR /&gt;&lt;BR /&gt;This is a problem in VS2005 only - it works in VS2003.&lt;BR /&gt;</description>
    <pubDate>Tue, 08 Aug 2006 05:08:55 GMT</pubDate>
    <dc:creator>Steven_L_Intel1</dc:creator>
    <dc:date>2006-08-08T05:08:55Z</dc:date>
    <item>
      <title>Watching a variable change while debugging</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Watching-a-variable-change-while-debugging/m-p/784443#M29355</link>
      <description>&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;I am new to Visual Fortran. I have been using a debugger on an SGI. With that debugger, I can have the program running in debug mode, and every time a variable of my choosing is written from or read to the debugger will break at that point allowing me to examine the program. I have not found anything similar to that with Visual Fortran. My question is if there is a way for me to set a variable (ex. "loft") and have the debugger stop every time that the variable is written to or read from without me having to set a break point at every occurance of that variable?&lt;/DIV&gt;</description>
      <pubDate>Fri, 11 Jun 2004 02:24:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Watching-a-variable-change-while-debugging/m-p/784443#M29355</guid>
      <dc:creator>david_l_oakley</dc:creator>
      <dc:date>2004-06-11T02:24:27Z</dc:date>
    </item>
    <item>
      <title>Re: Watching a variable change while debugging</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Watching-a-variable-change-while-debugging/m-p/784444#M29356</link>
      <description>&lt;P&gt;Debug-&amp;gt;Breakpoints (Ctrl+B) -&amp;gt; &lt;STRONG&gt;Data&lt;/STRONG&gt; tab. You can set the break wheneverthe value is changed.&lt;/P&gt;
&lt;P&gt;Be aware that the feature is little quirky -- it tends to "forget" the value in subsequent debugging sessions (if the variable is out of scope). Best way is to set a normal breakpoint somewhere at variable's initialization and then set or enable the "data" breakpoint.&lt;/P&gt;
&lt;P&gt;Jugoslav&lt;/P&gt;
&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 11 Jun 2004 18:51:16 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Watching-a-variable-change-while-debugging/m-p/784444#M29356</guid>
      <dc:creator>Jugoslav_Dujic</dc:creator>
      <dc:date>2004-06-11T18:51:16Z</dc:date>
    </item>
    <item>
      <title>Re: Watching a variable change while debugging</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Watching-a-variable-change-while-debugging/m-p/784445#M29357</link>
      <description>&lt;P&gt;It might be that I'm just repeatedly banging my head on the same brick wall and nobody's told me I should best stop; it might be that the brick wall should not be there to begin with, and nobody has acknowledged this; but either way, I cannot get the data breakpoints to work. &lt;/P&gt;
&lt;P&gt;I've written a simple program in Fortran, to the effect of hello world, now we asign the values to variables a, b, and c, assign to c some arithmetic expression of a and b, and then I'd F5 the program, break on the first line, and attempt to set a data breakpoint. This breakpoint was unconditionally ignored. Then I figured this might be a wider Micro$oft issue, so I repeated my problem in C++ 2005, effortlessly. My data breakpoints are unconditionally skipped.&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;But M$ was at best ignoring me, and at worst dancing around the issue on their support forums. So, my question would be, &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;1) is anyone able to actually use the data breakpoints in VS 2005 with IVF 9.1? &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;and if you're extremely bored, and the answer to the above question is "no," &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;2) can you use the same feature with M$ V$ 2005 C++?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;For reference, here are my codes:&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;program FortranConsole1&lt;BR /&gt;&lt;BR /&gt;implicit none&lt;BR /&gt;real a,b,c&lt;BR /&gt;c=0&lt;BR /&gt;a=0.23&lt;BR /&gt;b=0.45&lt;BR /&gt;c=a+b&lt;BR /&gt;&lt;BR /&gt;print *, 'Hello World'&lt;BR /&gt;print *, c&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;(note I break on the first line, then set my data breakpoint when c changes. I've tried every combination of variable size, C or C++ language that I can think of.)&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;SPAN id="_ctl0_MainContent_PostFlatView"&gt;&lt;SPAN&gt;#include&lt;IOSTREAM&gt;&lt;BR /&gt;using namespace std;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;void main()&lt;BR /&gt;{&lt;BR /&gt; float a,b,c;&lt;BR /&gt; (breakpoint) a=.23f;&lt;BR /&gt; b=.45f;&lt;BR /&gt; c=0;&lt;BR /&gt; c=a+b;&lt;BR /&gt; cout&amp;lt;&amp;lt;"Hi there!";&lt;BR /&gt; (breakpoint) cout&amp;lt;&amp;lt;"What Up Dawg!";&lt;BR /&gt;} &lt;/IOSTREAM&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;(note, at the first breakpoint, I set my data point, as usual).&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;If anyone can acknowledge this to be a problem, what would be the best strategy to (get the required attention ofthe right people who can and will)fix it?&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;Seriously, I'd love to move from CVF to IVF, as would a lot of people I've talked to at my company due to execution speeds of the compiled product. But the data breakpoint will make or break the switch.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Aug 2006 02:29:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Watching-a-variable-change-while-debugging/m-p/784445#M29357</guid>
      <dc:creator>Nick2</dc:creator>
      <dc:date>2006-08-08T02:29:12Z</dc:date>
    </item>
    <item>
      <title>Re: Watching a variable change while debugging</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Watching-a-variable-change-while-debugging/m-p/784446#M29358</link>
      <description>Submitting an issue to Intel Premier Support is the way to get the attention of the right people.&lt;BR /&gt;</description>
      <pubDate>Tue, 08 Aug 2006 03:07:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Watching-a-variable-change-while-debugging/m-p/784446#M29358</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2006-08-08T03:07:31Z</dc:date>
    </item>
    <item>
      <title>Re: Watching a variable change while debugging</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Watching-a-variable-change-while-debugging/m-p/784447#M29359</link>
      <description>&lt;P&gt;Premier Support has been very helpful indeed; but once they "reproduce/escalate" the issue, I end up stuck waiting for at least about a month for a response that may require my clarification, and another round of several weeks/months worth of waiting. &lt;/P&gt;</description>
      <pubDate>Tue, 08 Aug 2006 04:45:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Watching-a-variable-change-while-debugging/m-p/784447#M29359</guid>
      <dc:creator>Nick2</dc:creator>
      <dc:date>2006-08-08T04:45:33Z</dc:date>
    </item>
    <item>
      <title>Re: Watching a variable change while debugging</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Watching-a-variable-change-while-debugging/m-p/784448#M29360</link>
      <description>Once it has been escalated, it is sent to the developers and you typically won't get more feedback until the developer either fixes the problem or needs clarification. As it happens, I've spoken with the developer in question on this issue in the past and I know he's aware of it. I'll try to find out where he is with it. But please do submit the issue, as the more customers who complain, the higher the priority is. When you do,. tell them that the reference is T68496.&lt;BR /&gt;&lt;BR /&gt;This is a problem in VS2005 only - it works in VS2003.&lt;BR /&gt;</description>
      <pubDate>Tue, 08 Aug 2006 05:08:55 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Watching-a-variable-change-while-debugging/m-p/784448#M29360</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2006-08-08T05:08:55Z</dc:date>
    </item>
    <item>
      <title>Re: Watching a variable change while debugging</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Watching-a-variable-change-while-debugging/m-p/784449#M29361</link>
      <description>&lt;P&gt;I already submitted it in June, heh...but I've added the reference number, thanks for the info!&lt;/P&gt;</description>
      <pubDate>Tue, 08 Aug 2006 05:27:49 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Watching-a-variable-change-while-debugging/m-p/784449#M29361</guid>
      <dc:creator>Nick2</dc:creator>
      <dc:date>2006-08-08T05:27:49Z</dc:date>
    </item>
  </channel>
</rss>

