<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Introduction to Xcode&#8217;s Debugger</title>
	<atom:link href="http://meandmark.com/blog/2006/12/introduction-to-xcodes-debugger/feed/" rel="self" type="application/rss+xml" />
	<link>http://meandmark.com/blog/2006/12/introduction-to-xcodes-debugger/</link>
	<description></description>
	<lastBuildDate>Sat, 04 Feb 2012 20:06:57 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
	<item>
		<title>By: Tony</title>
		<link>http://meandmark.com/blog/2006/12/introduction-to-xcodes-debugger/comment-page-1/#comment-123</link>
		<dc:creator>Tony</dc:creator>
		<pubDate>Fri, 04 Sep 2009 03:49:18 +0000</pubDate>
		<guid isPermaLink="false">http://meandmark.com/blog/?p=31#comment-123</guid>
		<description>Another thing I love about the debugger that wasn&#039;t mentioned is that when the program is stopped at a breakpoint, and you are stepping thru the code, you can hover the cursor over variables to get an instant popup that shows their type and value.  Much faster way to check values than scrolling thru the Variable list.</description>
		<content:encoded><![CDATA[<p>Another thing I love about the debugger that wasn&#39;t mentioned is that when the program is stopped at a breakpoint, and you are stepping thru the code, you can hover the cursor over variables to get an instant popup that shows their type and value.  Much faster way to check values than scrolling thru the Variable list.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nathaniel Palmer</title>
		<link>http://meandmark.com/blog/2006/12/introduction-to-xcodes-debugger/comment-page-1/#comment-113</link>
		<dc:creator>Nathaniel Palmer</dc:creator>
		<pubDate>Sun, 21 Jun 2009 17:08:14 +0000</pubDate>
		<guid isPermaLink="false">http://meandmark.com/blog/?p=31#comment-113</guid>
		<description>Very helpful. Thanks. Didn&#039;t realize that &quot;loading symbols lazily&quot; could cause so much trouble.</description>
		<content:encoded><![CDATA[<p>Very helpful. Thanks. Didn&#39;t realize that &quot;loading symbols lazily&quot; could cause so much trouble.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark Reid</title>
		<link>http://meandmark.com/blog/2006/12/introduction-to-xcodes-debugger/comment-page-1/#comment-97</link>
		<dc:creator>Mark Reid</dc:creator>
		<pubDate>Mon, 26 Jan 2009 20:48:00 +0000</pubDate>
		<guid isPermaLink="false">http://meandmark.com/blog/?p=31#comment-97</guid>
		<description>Thanks for this quick guide. It really helped me to understand what the debugger can do to help me out of bugs in my code. If only I knew this a while ago. :-D</description>
		<content:encoded><![CDATA[<p>Thanks for this quick guide. It really helped me to understand what the debugger can do to help me out of bugs in my code. If only I knew this a while ago. <img src='http://meandmark.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':-D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://meandmark.com/blog/2006/12/introduction-to-xcodes-debugger/comment-page-1/#comment-67</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Fri, 29 Aug 2008 19:36:00 +0000</pubDate>
		<guid isPermaLink="false">http://meandmark.com/blog/?p=31#comment-67</guid>
		<description>If you set a breakpoint on a line of code that doesn&#039;t do anything, such as a variable declaration, the debugger won&#039;t stop at the breakpoint. The debugger will stop at the next line of code that does something. I did a test on a small command-line C++ program. When I set a breakpoint on a variable declaration, the debugger stopped at the next line of code instead of the line where I set the breakpoint.&lt;br/&gt;&lt;br/&gt;If you set a breakpoint on a line of code that does something, such as a cout statement, and the debugger isn&#039;t stopping at breakpoints, make sure you have turned off code optimization. Code optimization can eliminate lines of code. The Optimization Level build setting is in the GCC Code Generation collection.&lt;br/&gt;&lt;br/&gt;If you turn off code optimization and the debugger is skipping your breakpoint, open Xcode&#039;s preferences window by choosing Xcode &gt; Preferences. In the Debugging section, deselect the Load Symbols Lazily checkbox. Loading symbols lazily is a common cause of breakpoints being skipped.</description>
		<content:encoded><![CDATA[<p>If you set a breakpoint on a line of code that doesn&#39;t do anything, such as a variable declaration, the debugger won&#39;t stop at the breakpoint. The debugger will stop at the next line of code that does something. I did a test on a small command-line C++ program. When I set a breakpoint on a variable declaration, the debugger stopped at the next line of code instead of the line where I set the breakpoint.</p>
<p>If you set a breakpoint on a line of code that does something, such as a cout statement, and the debugger isn&#39;t stopping at breakpoints, make sure you have turned off code optimization. Code optimization can eliminate lines of code. The Optimization Level build setting is in the GCC Code Generation collection.</p>
<p>If you turn off code optimization and the debugger is skipping your breakpoint, open Xcode&#39;s preferences window by choosing Xcode &gt; Preferences. In the Debugging section, deselect the Load Symbols Lazily checkbox. Loading symbols lazily is a common cause of breakpoints being skipped.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://meandmark.com/blog/2006/12/introduction-to-xcodes-debugger/comment-page-1/#comment-66</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Fri, 29 Aug 2008 13:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://meandmark.com/blog/?p=31#comment-66</guid>
		<description>Hello,&lt;br/&gt;Thanks for the quick guide.&lt;br/&gt;When I debug a small c++ program in xcode 3, I can&#039;t get the debugger to stop on my first breakpoint; it just goes passed it to the first cout statement. However, when I debug the same code in Visual C++ 2008 Express it stops on every breakpoint.&lt;br/&gt;Is this how xcode is intended to work? Or is it a bug in the debugger?&lt;br/&gt;Thanks Mark.</description>
		<content:encoded><![CDATA[<p>Hello,<br />Thanks for the quick guide.<br />When I debug a small c++ program in xcode 3, I can&#8217;t get the debugger to stop on my first breakpoint; it just goes passed it to the first cout statement. However, when I debug the same code in Visual C++ 2008 Express it stops on every breakpoint.<br />Is this how xcode is intended to work? Or is it a bug in the debugger?<br />Thanks Mark.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://meandmark.com/blog/2006/12/introduction-to-xcodes-debugger/comment-page-1/#comment-62</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Fri, 22 Aug 2008 15:54:00 +0000</pubDate>
		<guid isPermaLink="false">http://meandmark.com/blog/?p=31#comment-62</guid>
		<description>This is very helpful!!</description>
		<content:encoded><![CDATA[<p>This is very helpful!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://meandmark.com/blog/2006/12/introduction-to-xcodes-debugger/comment-page-1/#comment-31</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Wed, 23 Jan 2008 14:27:00 +0000</pubDate>
		<guid isPermaLink="false">http://meandmark.com/blog/?p=31#comment-31</guid>
		<description>Thanks!&lt;br/&gt;&lt;br/&gt;Nice guide</description>
		<content:encoded><![CDATA[<p>Thanks!</p>
<p>Nice guide</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<br />
<b>Warning</b>:  Cannot modify header information - headers already sent by (output started at /home/szymczyk/public_html/blog/wp-includes/feed-rss2-comments.php:10) in <b>/home/szymczyk/public_html/blog/wp-includes/pluggable.php</b> on line <b>897</b><br />

