<?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 __SP_END  And __STACK_SIZE  missing during linking in ColdFire/68K Microcontrollers and Processors</title>
    <link>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/SP-END-And-STACK-SIZE-missing-during-linking/m-p/131797#M1009</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;Hi,&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;I have the MC52233 DEMO board and writing a small project to get used of the RTOS. Im using Codewarrior 6.3.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Everything compiles, but I get the following link error message:&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;Undefined : "__STACK_SIZE"&lt;/DIV&gt;&lt;DIV&gt;Referenced from "TK_NEWTASK" in osporttk.c&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Anyone let me know how to fix this problem?&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Many Thanks&lt;/DIV&gt;&lt;DIV&gt;Neil&amp;nbsp;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 29 Sep 2006 00:19:49 GMT</pubDate>
    <dc:creator>ND</dc:creator>
    <dc:date>2006-09-29T00:19:49Z</dc:date>
    <item>
      <title>__SP_END  And __STACK_SIZE  missing during linking</title>
      <link>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/SP-END-And-STACK-SIZE-missing-during-linking/m-p/131797#M1009</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;Hi,&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;I have the MC52233 DEMO board and writing a small project to get used of the RTOS. Im using Codewarrior 6.3.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Everything compiles, but I get the following link error message:&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;Undefined : "__STACK_SIZE"&lt;/DIV&gt;&lt;DIV&gt;Referenced from "TK_NEWTASK" in osporttk.c&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Anyone let me know how to fix this problem?&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Many Thanks&lt;/DIV&gt;&lt;DIV&gt;Neil&amp;nbsp;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Sep 2006 00:19:49 GMT</pubDate>
      <guid>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/SP-END-And-STACK-SIZE-missing-during-linking/m-p/131797#M1009</guid>
      <dc:creator>ND</dc:creator>
      <dc:date>2006-09-29T00:19:49Z</dc:date>
    </item>
    <item>
      <title>Re: __SP_END  And __STACK_SIZE  missing during linking</title>
      <link>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/SP-END-And-STACK-SIZE-missing-during-linking/m-p/131798#M1010</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;Hello&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;Apparently the RTOS you are using is expected symbols&amp;nbsp;&amp;nbsp;__SP_END and __STACK_SIZE&amp;nbsp; to be defined.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;In order to be able to link the application you have to define them.&lt;/DIV&gt;&lt;DIV&gt;Usually you define these symbols in the linker command file.&lt;/DIV&gt;&lt;DIV&gt;For example:&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;__STACK_SIZE&amp;nbsp;&amp;nbsp;= 0x800;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;__SP_END = 0x20008000 - __STACK_SIZE;&lt;BR /&gt;&lt;/DIV&gt;&lt;DIV&gt;This is directly related to the&amp;nbsp;way&amp;nbsp;the RTOS expects&amp;nbsp;&amp;nbsp;the stack to be set up.&lt;/DIV&gt;&lt;DIV&gt;So I would recommend you to check with your RTOS provider, how he is expecting the symbol to be defined.&lt;BR /&gt;&lt;/DIV&gt;&lt;DIV&gt;CrasyCat&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Sep 2006 12:51:28 GMT</pubDate>
      <guid>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/SP-END-And-STACK-SIZE-missing-during-linking/m-p/131798#M1010</guid>
      <dc:creator>CrasyCat</dc:creator>
      <dc:date>2006-09-29T12:51:28Z</dc:date>
    </item>
    <item>
      <title>Re: __SP_END  And __STACK_SIZE  missing during linking</title>
      <link>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/SP-END-And-STACK-SIZE-missing-during-linking/m-p/131799#M1011</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;Hi Neil:&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Do you fix the error by codewarrior6.3 can't compile the coldfire TCP/IP Lite?&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Many Thanks!&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;gxd.&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 08 Oct 2006 12:08:25 GMT</pubDate>
      <guid>https://community.nxp.com/t5/ColdFire-68K-Microcontrollers/SP-END-And-STACK-SIZE-missing-during-linking/m-p/131799#M1011</guid>
      <dc:creator>gxd</dc:creator>
      <dc:date>2006-10-08T12:08:25Z</dc:date>
    </item>
  </channel>
</rss>

