<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://devzone.nordicsemi.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>GCC/Eclipse unsolved resources</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/29065/gcc-eclipse-unsolved-resources</link><description>Like many others (read a lot of threads here about this and also beneath the tutorial to Eclipse many people write that they suffer for it) i have problems in Eclipse with unresolved resources. 
 However, none of the possible solutions seem to work.</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Fri, 19 Jan 2018 17:36:24 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/29065/gcc-eclipse-unsolved-resources" /><item><title>RE: GCC/Eclipse unsolved resources</title><link>https://devzone.nordicsemi.com/thread/115210?ContentTypeID=1</link><pubDate>Fri, 19 Jan 2018 17:36:24 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:406e5ab5-f17b-407b-baf2-ec346b268f5a</guid><dc:creator>Mason</dc:creator><description>&lt;p&gt;This resolved an issue in which Eclipse couldn&amp;#39;t find boards.h on SDK 14.2 for the blinky example&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: GCC/Eclipse unsolved resources</title><link>https://devzone.nordicsemi.com/thread/115209?ContentTypeID=1</link><pubDate>Wed, 03 May 2017 10:55:25 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6e3d7fa1-ea5a-43e5-8cfb-7fffd60744da</guid><dc:creator>Vidar Berg</dc:creator><description>&lt;p&gt;Patched makefile.common for SDK 12 and 13 is included at the end of the tutorial. I have reported this internally, and will hopefully get fixed in the next SDK release. I don&amp;#39;t think this is a bug in the makefile, but a limitation in CDT and how it parses the output.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: GCC/Eclipse unsolved resources</title><link>https://devzone.nordicsemi.com/thread/115208?ContentTypeID=1</link><pubDate>Tue, 02 May 2017 13:41:18 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:1ebd56f9-6bf3-4a8a-8d5b-006dbdaae875</guid><dc:creator>Vehring</dc:creator><description>&lt;p&gt;Thanks a lot, this seemed to vanish my errors too.
I haven&amp;#39;t tried to work with older SDK&amp;#39;s but if your observation is the root of the problem it should affect all that use eclipse and the SDK13&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: GCC/Eclipse unsolved resources</title><link>https://devzone.nordicsemi.com/thread/115207?ContentTypeID=1</link><pubDate>Tue, 02 May 2017 12:35:53 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:bd215003-784f-43a5-88f5-bfb678c05e82</guid><dc:creator>Rick</dc:creator><description>&lt;p&gt;I had the same issue after migrating to SDK13 which I narrowed down to Eclipse ignoring the defines in the makefile. For me right clicking on &amp;#39;main.c -&amp;gt; properties -&amp;gt; C/C++ General -&amp;gt; Preprocessor Include Paths&amp;#39; showed only the include files below &amp;#39;CDT GCC Build Output Parser&amp;#39; but no defines. This causes Eclipse to not include any of the board files in boards.h because it thinks no board is defined.&lt;/p&gt;
&lt;p&gt;To solve this issue I compared some files between SDK 12.2 and 13. I noticed &lt;a href="https://www.diffchecker.com/CktqxX7r"&gt;this difference&lt;/a&gt; in Makefile.common (/components/toolchain/gcc/).&lt;/p&gt;
&lt;h3&gt;Steps to solve this issue&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Open components/toolchain/gcc/Makefile.common&lt;/li&gt;
&lt;li&gt;Find the toolchain commands section&lt;/li&gt;
&lt;li&gt;Change the double quotes to single quotes for each command&lt;/li&gt;
&lt;li&gt;make clean&lt;/li&gt;
&lt;li&gt;make all&lt;/li&gt;
&lt;li&gt;Rebuild the index&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;For me this fixed the unresolved resource warnings for LFCLKSRC and LED_1. I found this by just looking around and trying things. It&amp;#39;s not like I actually know what I&amp;#39;m doing. It is possible that there are some unwanted consequences after these changes, although I haven&amp;#39;t noticed any.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: GCC/Eclipse unsolved resources</title><link>https://devzone.nordicsemi.com/thread/115206?ContentTypeID=1</link><pubDate>Wed, 05 Apr 2017 13:46:55 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:79e30adc-59cf-4d54-91cf-d179825e0d33</guid><dc:creator>Hung Bui</dc:creator><description>&lt;p&gt;Hi Vehring,&lt;/p&gt;
&lt;p&gt;Could you check the tutorial &lt;a href="https://devzone.nordicsemi.com/tutorials/7/"&gt;here&lt;/a&gt; and download the example projects provided in the tutorial and check if you have the same error ? At least on my computer uint32_t is fine, I can open declaration and it&amp;#39;s in _stdint.h.&lt;/p&gt;
&lt;p&gt;But I don&amp;#39;t think this CDT issues could be a significant issue, as the debugging is using gdb and it&amp;#39;s not really related to Eclipse CDT.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>