<?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>8-bit MicrocontrollersのトピックRe: dead stripping nightmares</title>
    <link>https://community.nxp.com/t5/8-bit-Microcontrollers/dead-stripping-nightmares/m-p/132429#M3046</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Hi,&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;If you don't use this string in your project, perhaps the compiler optimize it... and doesn't add it to your linked projest !!!&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Try to use it, just for test.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Regards,&lt;/DIV&gt;&lt;DIV&gt;Yvan&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 06 Oct 2006 14:09:35 GMT</pubDate>
    <dc:creator>yb</dc:creator>
    <dc:date>2006-10-06T14:09:35Z</dc:date>
    <item>
      <title>dead stripping nightmares</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/dead-stripping-nightmares/m-p/132428#M3045</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;can anyone help me out??? i'm using v3.1 codewarrior and all i want to do is add a version string to rom...the linker, however, keeps deadstripping it...i've tried all i know to try with all the help manuals...any suggestions?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;/**************** VERSION STRING ***************************************/&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;const char VERSION_STRING[20] =&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;{' ','x','x','x','x','x','x','x','x',' ','x','x',' ',&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;'v','1','.','0','.','0',' '};&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;this is the only reference to VERSION_STRING in the entire project...i've tried #pragma CONST_SEG and all kinds of other things to no avail...please help! thanks...&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Oct 2006 04:01:33 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/dead-stripping-nightmares/m-p/132428#M3045</guid>
      <dc:creator>jhall</dc:creator>
      <dc:date>2006-10-06T04:01:33Z</dc:date>
    </item>
    <item>
      <title>Re: dead stripping nightmares</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/dead-stripping-nightmares/m-p/132429#M3046</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Hi,&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;If you don't use this string in your project, perhaps the compiler optimize it... and doesn't add it to your linked projest !!!&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Try to use it, just for test.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Regards,&lt;/DIV&gt;&lt;DIV&gt;Yvan&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Oct 2006 14:09:35 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/dead-stripping-nightmares/m-p/132429#M3046</guid>
      <dc:creator>yb</dc:creator>
      <dc:date>2006-10-06T14:09:35Z</dc:date>
    </item>
    <item>
      <title>Re: dead stripping nightmares</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/dead-stripping-nightmares/m-p/132430#M3047</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;&lt;/DIV&gt;&lt;DIV&gt;try to look into map file, UNUSED-OBJECTS SECTION and you'll see how the linker optimizes a memory usage by omitting all variables, constants, functions, etc. that are not used in your project.&lt;/DIV&gt;&lt;DIV&gt;You can force linker NOT to omit any constant/variable/function by putting its name into linker PRM file in between ENTRIES END commands (see Linker help for details).&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Maybe just like this together with placing string onto a specific address too:&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;C file:&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="Courier New" size="2"&gt;#pragma CONST_SEG BOOTROM&lt;BR /&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="Courier New" size="2"&gt;const char appboottable[FLASH_WRITE_PAGE] =&amp;nbsp; { "ID$: ZSTAR Triaxial Demo" };&lt;BR /&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="Courier New" size="2"&gt;#pragma CONST_SEG DEFAULT&lt;BR /&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;PRM file:&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="Courier New" size="2"&gt;ENTRIES&lt;BR /&gt;appboottable&lt;BR /&gt;END&lt;BR /&gt;...&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="Courier New" size="2"&gt;SECTIONS&lt;BR /&gt;...&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="Courier New" size="2"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;BOOT_ROM =&amp;nbsp; READ_ONLY&amp;nbsp; 0x7000 TO 0x71FF;&lt;BR /&gt;...&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="Courier New" size="2"&gt;PLACEMENT&lt;BR /&gt;...&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="Courier New" size="2"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;BOOTROM&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; INTO BOOT_ROM;&lt;BR /&gt;...&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="Courier New" size="2"&gt;END&lt;BR /&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;Regards, Pavel ok2ucx&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Oct 2006 14:31:36 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/dead-stripping-nightmares/m-p/132430#M3047</guid>
      <dc:creator>ok2ucx</dc:creator>
      <dc:date>2006-10-06T14:31:36Z</dc:date>
    </item>
    <item>
      <title>Re: dead stripping nightmares</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/dead-stripping-nightmares/m-p/132431#M3048</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;i tried using the code...apparently the compiler is too smart for it's own good...but even if that did work it wouldn't get me to the point where i want to be...i still wouldn't know how to stop the linker/compiler from deadstripping it...but it was a good thought though...thanks...&lt;BR /&gt;&lt;BR /&gt;as for putting it between ENTRIES END, well, i've tried that as well...still doesn't work though...i have it as a const char VERSION_STRING...should i define it as something else?&lt;BR /&gt;&lt;BR /&gt;my prm looks like this:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;NAMES&lt;BR /&gt;&lt;BR /&gt;END&lt;BR /&gt;&lt;BR /&gt;ENTRIES&lt;BR /&gt;IRBaseTimer_OnInterrupt&lt;BR /&gt;VERSION_STRING&lt;BR /&gt;END&lt;BR /&gt;&lt;BR /&gt;SECTIONS&lt;BR /&gt;ROM = READ_ONLY 0xC000 TO 0xFFAF;&lt;BR /&gt;Z_RAM = READ_WRITE 0x0080 TO 0x009F;&lt;BR /&gt;RAM = READ_WRITE 0x00A0 TO 0x047F;&lt;BR /&gt;InterruptVectors_ROM = READ_ONLY 0xFFCC TO 0xFFFF;&lt;BR /&gt;VERSION_STRINGS = READ_ONLY 0xC000 TO 0xC0FF;&lt;BR /&gt;END&lt;BR /&gt;&lt;BR /&gt;PLACEMENT&lt;BR /&gt;DEFAULT_RAM INTO RAM;&lt;BR /&gt;DEFAULT_ROM, ROM_VAR, STRINGS INTO ROM,;&lt;BR /&gt;_DATA_ZEROPAGE, MY_ZEROPAGE INTO Z_RAM;&lt;BR /&gt;VERSION INTO VERSION_STRINGS;&lt;BR /&gt;END&lt;BR /&gt;&lt;BR /&gt;INIT _EntryPoint /* The entry point of the application. This function is generated into the CPU module. */&lt;BR /&gt;&lt;BR /&gt;STACKSIZE 0x0080 /* Size of the system stack. Value can be changed on the "Build options" tab */&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;my map file looks like this:&lt;BR /&gt;&lt;BR /&gt;NOT USED VARIABLES&lt;BR /&gt;RTSHC08.C.o (ansiis.lib):&lt;BR /&gt;_PowOfTwo_8 _PowOfTwo_16 _PowOfTwo_32 errno&lt;BR /&gt;Command_Table.c.o:&lt;BR /&gt;pCommand&lt;BR /&gt;Deck.c.o:&lt;BR /&gt;ReceiveBuffKeyPress&lt;BR /&gt;CommandoNG_ORIGINAL.c.o:&lt;BR /&gt;VERSION_STRING CurrentStatus KeyPress Shadow_PTD&lt;BR /&gt;Cpu.c.o:&lt;BR /&gt;CpuMode CCR_reg&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;and in my .c file, after main loop is closed:&lt;BR /&gt;&lt;BR /&gt;void main(void)&lt;BR /&gt;{&lt;BR /&gt;blah blah blah;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;/**************** VERSION STRING ***************************************/&lt;BR /&gt;const char VERSION_STRING[20] =&lt;BR /&gt;{' ','x','x','x','x','x','x','x','x',' ','x','x',' ',&lt;BR /&gt;'v','1','.','0','.','0',' '};&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;any other suggestions guys? thanks for the help!!!&lt;P&gt;Message Edited by jhall on &lt;SPAN class="date_text"&gt;2006-10-06&lt;/SPAN&gt;&lt;SPAN class="time_text"&gt;07:44 AM&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Oct 2006 19:36:14 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/dead-stripping-nightmares/m-p/132431#M3048</guid>
      <dc:creator>jhall</dc:creator>
      <dc:date>2006-10-06T19:36:14Z</dc:date>
    </item>
    <item>
      <title>Re: dead stripping nightmares</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/dead-stripping-nightmares/m-p/132432#M3049</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;DIV&gt;my .c file:&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="Courier New" size="2"&gt;/**************** VERSION STRING ***************************************/&lt;BR /&gt;const char VERSION_STRING[20] =&lt;BR /&gt;{' ','x','x','x','x','x','x','x','x',' ','x','x',' ',&lt;BR /&gt;'v','1','.','0','.','0',' '};&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;nothing in prm - string unused &amp;amp; removed.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Once my prm has this:&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="Courier New" size="2"&gt;ENTRIES&lt;BR /&gt;VERSION_STRING&lt;BR /&gt;END&lt;/FONT&gt;&lt;BR /&gt;&lt;/DIV&gt;&lt;DIV&gt;the string is included as following:&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT face="Courier New" size="2"&gt;&amp;nbsp;.text&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;- VARIABLES:&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;VERSION_STRING&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; EFAC&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 14&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 20&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&amp;nbsp;&amp;nbsp; .rodata&amp;nbsp;&lt;/FONT&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&lt;/DIV&gt;&lt;DIV&gt;Are you really using the PRM file that you modify (see Linker for HC08 settings)&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Pavel ok2ucx&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;BR /&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Oct 2006 20:08:24 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/dead-stripping-nightmares/m-p/132432#M3049</guid>
      <dc:creator>ok2ucx</dc:creator>
      <dc:date>2006-10-06T20:08:24Z</dc:date>
    </item>
    <item>
      <title>Re: dead stripping nightmares</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/dead-stripping-nightmares/m-p/132433#M3050</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;You know what? it works...forgive me for writing code at 7am...i didnt' follow your instructions wholely...now i have placed it into the section that i want it in the prm file... i was reading the part about putting it into SECTION and PLACEMENT, but wasn't listening to it when i was reading it...so it now works! THANKS&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Oct 2006 21:21:35 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/dead-stripping-nightmares/m-p/132433#M3050</guid>
      <dc:creator>jhall</dc:creator>
      <dc:date>2006-10-06T21:21:35Z</dc:date>
    </item>
    <item>
      <title>Re: dead stripping nightmares</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/dead-stripping-nightmares/m-p/132434#M3051</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;sorry about that last reply, i thought i had hit submit after i finished typing it...but i forgot to and got pulled off on another task...thanks for you help! following your instructions worked...i knew of the first step, but the placement of the code in the SECTIONS and PLACEMENT, i didn't know about those...thanks...that'll be very helpful in the next few weeks of writing code for this project...&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Oct 2006 21:24:10 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/dead-stripping-nightmares/m-p/132434#M3051</guid>
      <dc:creator>jhall</dc:creator>
      <dc:date>2006-10-06T21:24:10Z</dc:date>
    </item>
    <item>
      <title>Re: dead stripping nightmares</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/dead-stripping-nightmares/m-p/132435#M3052</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys.&lt;/P&gt;&lt;P&gt;Do you know if is there a generic way to disable such "cw optimization" wich simply "disappear" with not used objects?&lt;/P&gt;&lt;P&gt;Many times they are not accessed directly, but through different ways..there is..they are needed..!&lt;/P&gt;&lt;P&gt;Use&amp;nbsp; ENTRY in prm file works fine, but you need to remember to write into it for every not used object you add .....&lt;/P&gt;&lt;P&gt;Thanks !!&lt;/P&gt;&lt;P&gt;Ricardo Raupp&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Apr 2009 08:20:22 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/dead-stripping-nightmares/m-p/132435#M3052</guid>
      <dc:creator>Ricardo_RauppV</dc:creator>
      <dc:date>2009-04-20T08:20:22Z</dc:date>
    </item>
    <item>
      <title>Re: dead stripping nightmares</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/dead-stripping-nightmares/m-p/132436#M3053</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Project settings -&amp;gt; Target -&amp;gt; Compiler for .. -&amp;gt; Options -&amp;gt; Optimize dead assignments -&amp;gt; never.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Or :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;#pragma OPTION ADD "-Onu"&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Might do the job.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Apr 2009 16:53:14 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/dead-stripping-nightmares/m-p/132436#M3053</guid>
      <dc:creator>MrBean</dc:creator>
      <dc:date>2009-04-28T16:53:14Z</dc:date>
    </item>
    <item>
      <title>Re: dead stripping nightmares</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/dead-stripping-nightmares/m-p/132437#M3054</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks MrBean&lt;/P&gt;&lt;P&gt;I´ve heard something about disable dead spreading could interfere in the linked lib size, since the unused functions would be compiled as well...&lt;/P&gt;&lt;P&gt;Do you know if it make sense?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Ricardo Raupp&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Apr 2009 18:57:29 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/dead-stripping-nightmares/m-p/132437#M3054</guid>
      <dc:creator>Ricardo_RauppV</dc:creator>
      <dc:date>2009-04-28T18:57:29Z</dc:date>
    </item>
    <item>
      <title>Re: dead stripping nightmares</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/dead-stripping-nightmares/m-p/132438#M3055</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I just&amp;nbsp;tried it, and it doesnt seem to cause a code&amp;nbsp;size increase.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can also temporarily have the option on:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;#pragma OPTION ADD "-Onu"&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;//code here&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;#pragma OPTION DEL "-Onu"&amp;nbsp;&amp;nbsp;//Back to default&lt;/P&gt;&lt;P&gt;#pragma OPTION ADD "-Ou"&amp;nbsp;&amp;nbsp;//And switch on if needed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Apr 2009 01:52:20 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/dead-stripping-nightmares/m-p/132438#M3055</guid>
      <dc:creator>MrBean</dc:creator>
      <dc:date>2009-04-30T01:52:20Z</dc:date>
    </item>
    <item>
      <title>Re: dead stripping nightmares</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/dead-stripping-nightmares/m-p/132439#M3056</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, i have to correct the above.&lt;/P&gt;&lt;P&gt;The -Ou/-Onu option does do something enterly different.&lt;/P&gt;&lt;P&gt;Not what the original question was about.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 May 2009 00:47:30 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/dead-stripping-nightmares/m-p/132439#M3056</guid>
      <dc:creator>MrBean</dc:creator>
      <dc:date>2009-05-13T00:47:30Z</dc:date>
    </item>
    <item>
      <title>Re: dead striping nightmares</title>
      <link>https://community.nxp.com/t5/8-bit-Microcontrollers/dead-stripping-nightmares/m-p/132440#M3057</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There is only one way to disable dead striping by the linker and this is by adding the symbol name in the PRM file ENTRIES block.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is the only way around that.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;CrasyCat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 May 2009 14:57:42 GMT</pubDate>
      <guid>https://community.nxp.com/t5/8-bit-Microcontrollers/dead-stripping-nightmares/m-p/132440#M3057</guid>
      <dc:creator>CrasyCat</dc:creator>
      <dc:date>2009-05-13T14:57:42Z</dc:date>
    </item>
  </channel>
</rss>

