<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:content="http://purl.org/rss/1.0/modules/content/"
    xmlns:wfw="http://wellformedweb.org/CommentAPI/"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
>
<!-- MHonArc v2.6.10 -->
	<channel>
		<title>news.eclipse.tools.cdt</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.tools.cdt/maillist.html</link>
		<description>NewsGroup: news.eclipse.tools.cdt</description>
		<language>en-us</language>
		<pubDate>Sat, 04 Jul 2009 23:10:50 GMT</pubDate>
		<lastBuildDate>Sat, 04 Jul 2009 23:10:50 GMT</lastBuildDate>
		<docs>http://blogs.law.harvard.edu/tech/rss</docs>
		<generator>MHonArc RSS 2.0 RCFile</generator>
		<managingEditor>webmaster@eclipse.org (Webmaster)</managingEditor>
		<webMaster>webmaster@eclipse.org (Webmaster)</webMaster>
		<image>
			<title>news.eclipse.tools.cdt</title>
			<url>http://www.eclipse.org/eclipse.org-common/themes/Phoenix/images/eclipse_home_header.jpg</url>
			<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.tools.cdt/maillist.html</link>
		</image>
 

	<item>
		<title>[news.eclipse.tools.cdt] Is it possible to setup indexer thru	Command Line?</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.tools.cdt/msg18704.html</link>
		<description>Hi there, I like to use CTags indexer for my CDT projects. However, I've seen that this particular indexer has been discontinued since 3.1 Eclipse version, so that's the version I've been using, even after newer ones being released. Anyway, I have to updat...</description>
		<content:encoded><![CDATA[<pre style="margin: 0em;">Hi there,</pre><br>
<tt>I like to use CTags indexer for my CDT projects. However, I've seen that 
this particular indexer has been discontinued since 3.1 Eclipse version, 
so that's the version I've been using, even after newer ones being 
released.</tt><br>
<br>
<tt>Anyway, I have to update my project's source files very often. And 
everytime I need to re-select CTags as each project's indexer (since it is 
defaulted to Full Indexer, after sources are updated).</tt><br>
<br>
<tt>I wonder if there is any way to select a project's indexer by using 
command line (instead of having to manually set it thru project's 
properties window).</tt><br>
<br>
<pre style="margin: 0em;">Thanks in advance. All the best,
Alexandre Bodi.</pre><br>
<br>
]]></content:encoded>
		<pubDate>Sat, 04 Jul 2009 23:03:20 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.tools.cdt/msg18704.html</guid>
		<author>alexandre.bodi@xxxxxxx (Alexandre Bodi)</author>
	</item>
	<item>
		<title>[news.eclipse.tools.cdt] Re: Help needed</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.tools.cdt/msg18703.html</link>
		<description>Stdout is buffered when running from within Eclipse. You need to flush stdout in order to get the prompt displayed on the console. </description>
		<content:encoded><![CDATA[<tt>Arkadi Yoskovitz wrote:
</tt><blockquote style="border-left: #5555EE solid 0.2em; margin: 0em; padding-left: 0.85em"><pre style="margin: 0em;">Hi,</pre><br>
<pre style="margin: 0em;">I'm new to programing with eclipse CDT and I'm having a bit of a problem.</pre><br>
<pre style="margin: 0em;">thought that maybe some of you can help me with it.</pre><br>
<tt>I wrought a basic program that scans of 3 integers and prints the 
average put then i tried to run the program from the IDE the console 
didn't work as i expected it to.</tt><br>
<br>
<tt>It was spouse to prinf a msg &quot;enter 3 integer numbers and then to scan 
for them but instead is scans first, I've been working on it all day and 
thought that maybe some one has an idea way it doesn't work.</tt><br>
<br>
<pre style="margin: 0em;">(On a side note if you run the program in the run/cmd window it does work)</pre><br>
<pre style="margin: 0em;"><br>Here's thew code.</pre><br>
<pre style="margin: 0em;">Hope that someone can help me with it.</pre><br>
<pre style="margin: 0em;"><br>/* file: average.c */
#include &lt;stdio.h&gt;</pre><br>
<pre style="margin: 0em;">/* calculate the average of 3 numbers */</pre><br>
<pre style="margin: 0em;">   int num1, num2, num3;
   float avg;</pre><br>
<pre style="margin: 0em;">void main()
{
   printf(&quot;Enter 3 integer numbers:\n&quot;);
   scanf(&quot;%d %d %d&quot;, &amp;num1, &amp;num2, &amp;num3);
   avg=num1 + num2 + num3;
   avg=avg/3;
   printf(&quot;The average is: %f&quot;, avg);
   }</pre><br>
<pre style="margin: 0em;"><br></pre><br>
</blockquote><tt>Stdout is buffered when running from within Eclipse.  You need to flush 
stdout in order to get the prompt displayed on the console.</tt><br>
<br>
]]></content:encoded>
		<pubDate>Sat, 04 Jul 2009 20:41:45 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.tools.cdt/msg18703.html</guid>
		<author>dpwegener@xxxxxxx (David Wegener)</author>
	</item>
	<item>
		<title>[news.eclipse.tools.cdt] Help needed</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.tools.cdt/msg18702.html</link>
		<description>Hi, I'm new to programing with eclipse CDT and I'm having a bit of a problem. thought that maybe some of you can help me with it. I wrought a basic program that scans of 3 integers and prints the average put then i tried to run the program from the IDE the...</description>
		<content:encoded><![CDATA[<pre style="margin: 0em;">Hi,</pre><br>
<pre style="margin: 0em;">I'm new to programing with eclipse CDT and I'm having a bit of a problem.</pre><br>
<pre style="margin: 0em;">thought that maybe some of you can help me with it.</pre><br>
<tt>I wrought a basic program that scans of 3 integers and prints the average 
put then i tried to run the program from the IDE the console didn't work 
as i expected it to.</tt><br>
<br>
<tt>It was spouse to prinf a msg &quot;enter 3 integer numbers and then to scan for 
them but instead is scans first, I've been working on it all day and 
thought that maybe some one has an idea way it doesn't work.</tt><br>
<br>
<pre style="margin: 0em;">(On a side note if you run the program in the run/cmd window it does work)</pre><br>
<pre style="margin: 0em;"><br>Here's thew code.</pre><br>
<pre style="margin: 0em;">Hope that someone can help me with it.</pre><br>
<pre style="margin: 0em;"><br>/* file: average.c */
#include &lt;stdio.h&gt;</pre><br>
<pre style="margin: 0em;">/* calculate the average of 3 numbers */</pre><br>
<pre style="margin: 0em;">   int num1, num2, num3;
   float avg;</pre><br>
<pre style="margin: 0em;">void main()
{
   printf(&quot;Enter 3 integer numbers:\n&quot;);
   scanf(&quot;%d %d %d&quot;, &amp;num1, &amp;num2, &amp;num3);
   avg=num1 + num2 + num3;
   avg=avg/3;
   printf(&quot;The average is: %f&quot;, avg);
   }</pre><br>
<pre style="margin: 0em;"><br></pre><br>
<br>
]]></content:encoded>
		<pubDate>Sat, 04 Jul 2009 19:35:21 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.tools.cdt/msg18702.html</guid>
		<author>hikari.battosai@xxxxxxx (Arkadi Yoskovitz)</author>
	</item>


	<item>
		<title>[news.eclipse.tools.cdt] undefined references?</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.tools.cdt/msg18701.html</link>
		<description>Hi, I'm new to Eclipse and the Workspace paradigm -- I've wondered how much has it got to do with the problem I'm experiencing. I've got two projects, one is a static library (referencing the OpenGL and SDL libraries), the other one is an executable projec...</description>
		<content:encoded><![CDATA[<pre style="margin: 0em;">Hi,</pre><br>
<tt>I'm new to Eclipse and the Workspace paradigm -- I've wondered how much 
has it got to do with the problem I'm experiencing.</tt><br>
<br>
<tt>I've got two projects, one is a static library (referencing the OpenGL and 
SDL libraries), the other one is an executable project, that's linking 
against the following libraries, in the following order:</tt><br>
<br>
<pre style="margin: 0em;">mingw32
SDLmain
SDL
SDL_Image
SDL_Mixer
opengl32
myStaticLibrary</pre><br>
<tt>Up to this point, everything is much like in the IDE I've been using 
originally, xcode. Both projects compile fine. The executable project, 
however, fails to link, dropping undefined reference errors for every call 
to OpenGL or SDL functions - and these errors are coming from the source 
of the static library. (As it was made clear to me in another thread 
(<a  href="http://dev.eclipse.org/newslists/news.eclipse.tools.cdt/msg18653.html">http://dev.eclipse.org/newslists/news.eclipse.tools.cdt/msg18653.html</a>), 
the static library has no linkage; when the executable project that's 
built on top of it is closed, the static library will build with no errors 
- if that's the issue, where do I resolve these references?)</tt><br>
<br>
<tt>MinGW and MSys are installed, and I've also tried to show the linker 
(executable project / Properties / C/C++ Build / Settings / Tool Settings 
/ MinGW C++ Linker / Libraries / Library search path) to where OpenGL and 
SDL libraries are located (they are in C:/MinGW/lib), to no avail. 
myStaticLibrary's location is also included in the library search path 
(then again, there were no errors related to that).</tt><br>
<br>
<pre style="margin: 0em;">This is very frustrating; any help would be greatly appreciated.</pre><br>
<pre style="margin: 0em;"><br></pre><br>
]]></content:encoded>
		<pubDate>Fri, 03 Jul 2009 12:14:32 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.tools.cdt/msg18701.html</guid>
		<author>zyndor@xxxxxxx (Gyorgy Straub)</author>
	</item>
	<item>
		<title>[news.eclipse.tools.cdt] Extend CDT editor capabilities</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.tools.cdt/msg18700.html</link>
		<description>Hi We have designed an annotation (into comments) language for C program and we want to have content assist into CDT C editor. Is it possible to extend the behavior of cdt to add personal content assist on particular code section ? example : /* annotation ...</description>
		<content:encoded><![CDATA[<tt>Hi<br>
We have designed an annotation (into comments) language for C program 
and we want to have content assist into CDT C editor. Is it possible to 
extend the behavior of cdt to add personal content assist on particular 
code section ?</tt><br>
<br>
<pre style="margin: 0em;">example :</pre><br>
<pre style="margin: 0em;">/*
   annotation language referencing current variables and fields
*/
int funtion ()
{</pre><br>
<pre style="margin: 0em;">}</pre><br>
]]></content:encoded>
		<pubDate>Fri, 03 Jul 2009 12:03:00 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.tools.cdt/msg18700.html</guid>
		<author>tristan.faure@xxxxxxx (Tristan FAURE)</author>
	</item>
	<item>
		<title>[news.eclipse.tools.cdt] Debugger found the wrong source file - how	to fix?</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.tools.cdt/msg18699.html</link>
		<description>I've been clever enough to use the same (base) file name for two different source code files on two different sub directories under my project. When I started a debug session just now in order to analyse a core file, the debugger picked up the wrong one. I...</description>
		<content:encoded><![CDATA[<tt>I've been clever enough to use the same (base) file name for two different 
source code files on two different sub directories under my project.</tt><br>
<br>
<tt>When I started a debug session just now in order to analyse a core file, 
the debugger picked up the wrong one. Is there any way to tell it to use 
the other (correct) one instead? Also, this seems to indicate that the 
debug setup searches for files on basename. Shouldn't it try the absolute 
path given in the debug tables first?</tt><br>
<br>
<tt>Note that gdb from the command line did not have this problem for the same 
executable and core file.</tt><br>
<br>
<br>
]]></content:encoded>
		<pubDate>Fri, 03 Jul 2009 08:02:55 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.tools.cdt/msg18699.html</guid>
		<author>toralf.lund@xxxxxxx (Toralf Lund)</author>
	</item>
	<item>
		<title>[news.eclipse.tools.cdt] File types (assembly Source file)</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.tools.cdt/msg18698.html</link>
		<description>My problem is that the assembler file must be named .S and no .s . in the documentation of the assembler should be marked file.s Assembler code. file.S Assembler code which must be preprocessed. in the older version there was no such problem how can I solv...</description>
		<content:encoded><![CDATA[<pre style="margin: 0em;">My problem is that the assembler file must be named .S and no .s .</pre><br>
<pre style="margin: 0em;">in the documentation of the assembler should be marked</pre><br>
<tt>file.s<br>
Assembler code. </tt><br>
<br>
<pre style="margin: 0em;">file.S
Assembler code which must be preprocessed.</pre><br>
<tt>in the older version there was no such problem 
how can I solve my problem???</tt><br>
<br>
<br>
]]></content:encoded>
		<pubDate>Fri, 03 Jul 2009 07:44:03 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.tools.cdt/msg18698.html</guid>
		<author>brian.mouri@xxxxxxx (mouri )</author>
	</item>
	<item>
		<title>[news.eclipse.tools.cdt] Re: Controlling what /how to build before	launch?</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.tools.cdt/msg18697.html</link>
		<description>After upgrading to CDT 6, I see a &amp;quot;Build Configuration&amp;quot; option menu under Main in the launch configurations dialogue. I don't think it was there in the past. So, I suppose this was a missing feature that has now been added ;-) </description>
		<content:encoded><![CDATA[<pre style="margin: 0em;">Toralf Lund wrote:</pre><br>
<blockquote style="border-left: #5555EE solid 0.2em; margin: 0em; padding-left: 0.85em"><tt>When the &quot;Build (if required) before launching&quot; option is enabled, is 
there any way I can control how exactly the build is executed for a 
certain program? I mean, if a project has several programs/launch 
configurations and also several build configurations, can I somehow relate 
them to each other?
</tt></blockquote><tt>After upgrading to CDT 6, I see a &quot;Build Configuration&quot; option menu under 
Main in the launch configurations dialogue. I don't think it was there in 
the past. So, I suppose this was a missing feature that has now been added 
;-)</tt><br>
<br>
<blockquote style="border-left: #5555EE solid 0.2em; margin: 0em; padding-left: 0.85em"><tt>Or alternatively, can I specify special options or 
variables that are sent to the build based on which program or launch 
configuration is activated?
</tt></blockquote><br>
<blockquote style="border-left: #5555EE solid 0.2em; margin: 0em; padding-left: 0.85em"><tt>- Toralf
</tt></blockquote><pre style="margin: 0em;"><br></pre><br>
<br>
]]></content:encoded>
		<pubDate>Fri, 03 Jul 2009 07:25:29 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.tools.cdt/msg18697.html</guid>
		<author>toralf.lund@xxxxxxx (Toralf Lund)</author>
	</item>
	<item>
		<title>[news.eclipse.tools.cdt] How to start DSF debugger?</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.tools.cdt/msg18696.html</link>
		<description>I've just upgraded to CDT 6 and would like to test the &amp;quot;DSF&amp;quot; debugging setup, but can't figure out how to activate it. In particular, I do not see the &amp;quot;extra&amp;quot; debug types under Debug Configurations that are mentioned in the release notes, and the ones I ha...</description>
		<content:encoded><![CDATA[<tt>I've just upgraded to CDT 6 and would like to test the &quot;DSF&quot; debugging 
setup, but can't figure out how to activate it. In particular, I do not 
see the &quot;extra&quot; debug types under Debug Configurations that are mentioned 
in the release notes, and the ones I have appear to give me the 
&quot;traditional&quot; setup.</tt><br>
<br>
<tt>So, is there something wrong with my installation? Or is there something 
else I have to do in order to enable DSF.</tt><br>
<br>
<tt>Note that<br>
Eclipse C/C++ DSF gdb Debugger 
Integration	2.0.0.200906161748	org.eclipse.cdt.gnu.dsf.feature.group</tt><br>
<br>
<tt>is mentioned among the installed software, and I also have a DSF entry 
under Run/Debug preferences. I'm using Eclipse under Linux.</tt><br>
<br>
<pre style="margin: 0em;">Help, anyone?</pre><br>
<pre style="margin: 0em;">- Toralf</pre><br>
<br>
]]></content:encoded>
		<pubDate>Fri, 03 Jul 2009 07:20:35 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.tools.cdt/msg18696.html</guid>
		<author>toralf.lund@xxxxxxx (Toralf Lund)</author>
	</item>


	<item>
		<title>[news.eclipse.tools.cdt] Contributions to CDT problems view menu</title>
		<link>http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.tools.cdt/msg18695.html</link>
		<description>Hello, I would like to add context specific contributions to the CDT problems view menu. Essentially right clicking on a particular problem in the view pops up a menu. We would like to add our own contributions to this menu and hook in actions. Are there a...</description>
		<content:encoded><![CDATA[<tt>Hello,<br>
I would like to add context specific contributions to the CDT problems 
view menu. Essentially right clicking on a particular problem in the view 
pops up  a menu. We would like to add our own contributions to this menu 
and hook in actions.</tt><br>
<br>
<pre style="margin: 0em;">Are there any examples or code from which I can get started?</pre><br>
<pre style="margin: 0em;">Thanks
Amit</pre><br>
<br>
]]></content:encoded>
		<pubDate>Thu, 02 Jul 2009 23:27:24 GMT</pubDate>
		<guid isPermaLink="true">http://dev.eclipse.org/mhonarc/newsLists/news.eclipse.tools.cdt/msg18695.html</guid>
		<author>amitm@xxxxxxx (Amit Mookerjee)</author>
	</item>

 
	</channel>
	</rss>
<!-- MHonArc v2.6.10 -->
