<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="http://www.newlc.com" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>NewLC - Compilation, Tools and SDKs - Comments</title>
 <link>http://www.newlc.com/forums/compilation-tools-and-sdks</link>
 <description>Comments for &quot;Compilation, Tools and SDKs&quot;</description>
 <language>en</language>
<item>
 <title>Re: Visual Studio 2005</title>
 <link>http://www.newlc.com/forum/visual-studio-2008-carbidevs-cant-load-library-mmp-file#comment-49016</link>
 <description>&lt;p&gt;Go to the solution explorar, right click on project name and go to property.&lt;br /&gt;
Choose Linker-&gt;Input, now on right side of window add lib name to the additional dependencies.&lt;br /&gt;
&lt;/p&gt;</description>
 <pubDate>Mon, 13 Oct 2008 09:00:21 +0200</pubDate>
 <dc:creator>chandrafsm</dc:creator>
 <guid isPermaLink="false">comment 49016 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: Visual Studio 2005 with Carbide.vs can&#039;t load LIBRARY...</title>
 <link>http://www.newlc.com/forum/visual-studio-2008-carbidevs-cant-load-library-mmp-file#comment-48956</link>
 <description>&lt;p&gt;&lt;div class=&quot;bb-quote&quot;&gt;&lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;br /&gt;
Ps.Sorry if my words annoy you,I&#039;m not good at English&lt;br /&gt;
&lt;/blockquote&gt;&lt;/div&gt;&lt;/p&gt;

&lt;p&gt;No need to worry as long as you are actually trying&lt;br /&gt;
The annoying ones are the guys who can&#039;t even bother to try and use home made words with one or two letters &lt;img src=&quot;/sites/all/modules/smileys/packs/example/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; /&gt;&lt;/p&gt;

&lt;p&gt;I wish I knew how to help you too, but I don&#039;t...&lt;br /&gt;
I&#039;ve never used carbide.vs&lt;/p&gt;

&lt;p&gt;Maybe you need to do some kind of re-import of the mmp file after changeing it?&lt;br /&gt;
&lt;/p&gt;</description>
 <pubDate>Wed, 08 Oct 2008 10:29:05 +0200</pubDate>
 <dc:creator>alh</dc:creator>
 <guid isPermaLink="false">comment 48956 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: GCCE link errors and C FILE IO error</title>
 <link>http://www.newlc.com/forum/gcce-link-errors-and-c-file-io-error#comment-48869</link>
 <description>&lt;p&gt;I&#039;ve solved it. See &lt;a href=&quot;http://discussion.forum.nokia.com/forum/showthread.php?p=478466&quot; class=&quot;bb-url&quot;&gt;here&lt;/a&gt;.&lt;/p&gt;</description>
 <pubDate>Thu, 02 Oct 2008 16:01:02 +0200</pubDate>
 <dc:creator>etarip</dc:creator>
 <guid isPermaLink="false">comment 48869 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: GCCE link errors and C FILE IO error</title>
 <link>http://www.newlc.com/forum/gcce-link-errors-and-c-file-io-error#comment-48867</link>
 <description>&lt;p&gt;On second thought, thats not the problem...&lt;/p&gt;

&lt;p&gt;wouldn&#039;t work on emulator either then.&lt;/p&gt;</description>
 <pubDate>Thu, 02 Oct 2008 14:34:25 +0200</pubDate>
 <dc:creator>alh</dc:creator>
 <guid isPermaLink="false">comment 48867 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: GCCE link errors and C FILE IO error</title>
 <link>http://www.newlc.com/forum/gcce-link-errors-and-c-file-io-error#comment-48864</link>
 <description>&lt;p&gt;My guess is that you have forgotten to specify export &quot;C&quot; for the declarations of your C functions.&lt;br /&gt;
Then the compiler will assume its a C++ function and will put in a reference to a C++-mangled-name function, instead of the C-style function name.&lt;/p&gt;

&lt;p&gt;easiest when porting C stuff is usually to specify it around the include like this:&lt;/p&gt;

&lt;p&gt;export &quot;C&quot; {&lt;br /&gt;
#include &quot;my_c_functions.h&quot;&lt;br /&gt;
}&lt;/p&gt;

&lt;p&gt;or you can make your c-header c++-compatible by putting&lt;/p&gt;

&lt;p&gt;#ifdef __cplusplus&lt;br /&gt;
export &quot;C&quot; {&lt;br /&gt;
#endif&lt;/p&gt;

&lt;p&gt;at the top&lt;br /&gt;
and a&lt;/p&gt;

&lt;p&gt;#ifdef __cplusplus&lt;br /&gt;
}&lt;br /&gt;
#endif&lt;/p&gt;

&lt;p&gt;at the bottom of it...&lt;br /&gt;
&lt;/p&gt;</description>
 <pubDate>Thu, 02 Oct 2008 12:33:48 +0200</pubDate>
 <dc:creator>alh</dc:creator>
 <guid isPermaLink="false">comment 48864 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: </title>
 <link>http://www.newlc.com/forum/im-newbie-wwwnewlccom-i-just-only-can-post-very-short-message-why#comment-48839</link>
 <description>&lt;p&gt;I always got an error page like this:&lt;/p&gt;

&lt;p&gt;Method Not Implemented&lt;/p&gt;

&lt;p&gt;POST to /node/add/forum not supported.&lt;/p&gt;</description>
 <pubDate>Tue, 30 Sep 2008 17:28:37 +0200</pubDate>
 <dc:creator>etarip</dc:creator>
 <guid isPermaLink="false">comment 48839 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: GCCE link errors and C FILE IO error</title>
 <link>http://www.newlc.com/forum/gcce-link-errors-and-c-file-io-error#comment-48838</link>
 <description>&lt;p&gt;&lt;span style=&quot;font-weight:bold&quot;&gt;It seems that all of the &quot;undefined&quot; function call places are in the different lib with the implementation of the function.&lt;/span&gt; But not all such call places cause such link errors.&lt;/p&gt;</description>
 <pubDate>Tue, 30 Sep 2008 17:17:36 +0200</pubDate>
 <dc:creator>etarip</dc:creator>
 <guid isPermaLink="false">comment 48838 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: GCCE link errors and C FILE IO error</title>
 <link>http://www.newlc.com/forum/gcce-link-errors-and-c-file-io-error#comment-48837</link>
 <description>&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;..\..\..\..\..\opt\Symbian\9.1\S60_3rd_MR\EPOC32\RELEASE\ARMV5\UDEB\egret_driver.lib(TKCEgretEngine.o): In function `~TKCEgretEngine&amp;#039;:&lt;br /&gt;..\\src\/Tkcegretengine.cpp:46: undefined reference to `tk_exit&amp;#039;&lt;br /&gt;..\\src\/Tkcegretengine.cpp:46: undefined reference to `tk_exit&amp;#039;&lt;br /&gt;..\\src\/Tkcegretengine.cpp:46: undefined reference to `tk_exit&amp;#039;&lt;br /&gt;..\..\..\..\..\opt\Symbian\9.1\S60_3rd_MR\EPOC32\RELEASE\ARMV5\UDEB\egret_driver.lib(TKCEgretEngine.o): In function `TKCEgretEngine::Start()&amp;#039;:&lt;br /&gt;..\\src\/Tkcegretengine.cpp:52: undefined reference to `tk_init&amp;#039;&lt;br /&gt;..\..\..\..\..\opt\Symbian\9.1\S60_3rd_MR\EPOC32\RELEASE\ARMV5\UDEB\egret_driver.lib(TKCEgretEngine.o): In function `TKCEgretEngine::RunL()&amp;#039;:&lt;br /&gt;..\\src\/Tkcegretengine.cpp:58: undefined reference to `tk_is_running&amp;#039;&lt;br /&gt;.......................&lt;br /&gt;.......................&lt;/code&gt;&lt;/div&gt;&lt;/p&gt;</description>
 <pubDate>Tue, 30 Sep 2008 17:16:25 +0200</pubDate>
 <dc:creator>etarip</dc:creator>
 <guid isPermaLink="false">comment 48837 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: make (e=2): The system cannot find the file specified.</title>
 <link>http://www.newlc.com/topic-4482#comment-48715</link>
 <description>&lt;p&gt;I had similar problem finally &lt;a href=&quot;http://discussion.forum.nokia.com/forum/showthread.php?t=85118&quot;&gt;http://discussion.forum.nokia.com/forum/showthread.php?t=85118&lt;/a&gt; had the solution.&lt;br /&gt;
One of the make file keyword ARCHIVER was not initialized.&lt;br /&gt;
-Datha&lt;/p&gt;</description>
 <pubDate>Thu, 25 Sep 2008 17:17:44 +0200</pubDate>
 <dc:creator>datk</dc:creator>
 <guid isPermaLink="false">comment 48715 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: makesis.exe returned with exit value=1</title>
 <link>http://www.newlc.com/forum/makesisexe-returned-exit-value1#comment-48713</link>
 <description>&lt;p&gt;No it is not necessary. But you need to have valid path to your object file in your pkg.&lt;/p&gt;</description>
 <pubDate>Thu, 25 Sep 2008 16:34:10 +0200</pubDate>
 <dc:creator>eric</dc:creator>
 <guid isPermaLink="false">comment 48713 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: Arm Error</title>
 <link>http://www.newlc.com/forum/arm-error#comment-48599</link>
 <description>&lt;p&gt;To me it sounds like SomeFunc() is missing from B.lib&lt;/p&gt;

&lt;p&gt;try remove the B.lib file manually, to make sure its re-created... sometimes that has failed for me.&lt;/p&gt;

&lt;p&gt;could be some problem with your def files or project settings when creating B.dll too.&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;</description>
 <pubDate>Thu, 18 Sep 2008 14:16:47 +0200</pubDate>
 <dc:creator>alh</dc:creator>
 <guid isPermaLink="false">comment 48599 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: App TRK on an E71</title>
 <link>http://www.newlc.com/forum/app-trk-e71#comment-48433</link>
 <description>&lt;p&gt;The newest, which you will need, is in Carbide.c++ 1.3. Not sure if there&#039;s a separate/standalone download for it. Check on Forum Nokia: &lt;a href=&quot;http://forum.nokia.com&quot;&gt;http://forum.nokia.com&lt;/a&gt;&lt;/p&gt;</description>
 <pubDate>Thu, 04 Sep 2008 16:00:58 +0200</pubDate>
 <dc:creator>N_A</dc:creator>
 <guid isPermaLink="false">comment 48433 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: Sorry, but...</title>
 <link>http://www.newlc.com/forum/sorry#comment-48376</link>
 <description>&lt;p&gt;Same for me. Too little information about what makes this board so good. And someone that register on the site just to post a question... and such answer a few minutes later...&lt;br /&gt;
Post edited. User blocked.&lt;/p&gt;</description>
 <pubDate>Tue, 02 Sep 2008 09:29:42 +0200</pubDate>
 <dc:creator>eric</dc:creator>
 <guid isPermaLink="false">comment 48376 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: Sorry, but...</title>
 <link>http://www.newlc.com/forum/sorry#comment-48370</link>
 <description>&lt;p&gt;Maybe you are a spammer trying to &quot;covertly&quot; advertise your own product and think we don&#039;t notice?&lt;/p&gt;

&lt;p&gt;Or, maybe you are not a spammer, and I&#039;m just too suspicious.&lt;/p&gt;</description>
 <pubDate>Mon, 01 Sep 2008 19:36:44 +0200</pubDate>
 <dc:creator>N_A</dc:creator>
 <guid isPermaLink="false">comment 48370 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: Sorry, but...</title>
 <link>http://www.newlc.com/forum/sorry#comment-48367</link>
 <description>&lt;p&gt;Hi all, &lt;br /&gt;
I found one kit named xxx yesterday at xxx. I think it would be perfect for me. The board is nice, it meets all of my requiremenst, and contains all the necessary accessaries. The company in China would provide me English instruction files, so I can modify it by myself in the future and learn more about the embedded things. And the price is really low, China alway has so many cheap things, maybe you guys should try this xxx next time when you need some boards.&lt;/p&gt;

&lt;p&gt; Leon&lt;/p&gt;</description>
 <pubDate>Mon, 01 Sep 2008 12:44:00 +0200</pubDate>
 <dc:creator>leon_K</dc:creator>
 <guid isPermaLink="false">comment 48367 at http://www.newlc.com</guid>
</item>
</channel>
</rss>
