<?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>CodeWarrior Development Tools中的主题 Re: Linker file for Library</title>
    <link>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Linker-file-for-Library/m-p/961338#M7863</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Uday,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please check the below post in section &lt;STRONG&gt;Relocating particular libraries into RAM&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.nxp.com/thread/389110"&gt;Relocating code from FLASH to RAM&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Have a great day,&lt;BR /&gt;Felipe&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-------------------------------------------------------------------------------&lt;BR /&gt;Note:&lt;BR /&gt;- If this post answers your question, please click the "Mark Correct" button. Thank you!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- We are following threads for 7 weeks after the last post, later replies are ignored&lt;BR /&gt; Please open a new thread and refer to the closed one, if you have a related question at a later point in time.&lt;BR /&gt;-------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 11 Sep 2019 16:09:46 GMT</pubDate>
    <dc:creator>FelipeGarcia</dc:creator>
    <dc:date>2019-09-11T16:09:46Z</dc:date>
    <item>
      <title>Linker file for Library</title>
      <link>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Linker-file-for-Library/m-p/961337#M7862</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am using CW10.3 for MK20xx.&lt;/P&gt;&lt;P&gt;I have created a library where in specific code is to be placed in RAM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Before creating the library I had a test program created using PE and have used the code as follows&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Header file contents&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;#pragma define_section relocate_code ".relocate_code" ".relocate_code" ".relocate_code" far_abs RW&lt;BR /&gt;#define __relocate_code__ __declspec(relocate_code)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;File.C&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;__relocate_code__&lt;BR /&gt;UINT32 FlashCommandSequence (PFLASH_SSD_CONFIG PSSDConfig, \&lt;BR /&gt; UINT8 index, \&lt;BR /&gt; UINT8* pCommandArray)&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;. . . .&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;and the linker file ProcessorExpert.Lcf contains&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;KEEP_SECTION { .vectortable }&lt;BR /&gt;KEEP_SECTION { .cfmconfig }&lt;/P&gt;&lt;P&gt;KEEP_SECTION { .relocate_code }&lt;/P&gt;&lt;P&gt;MEMORY {&lt;BR /&gt; m_interrupts (RX) : ORIGIN = 0x00004000, LENGTH = 0x000001E0&lt;BR /&gt; m_text (RX) : ORIGIN = 0x00004400, LENGTH = 0x0003AC00&lt;BR /&gt; m_data (RW) : ORIGIN = 0x1FFF0000, LENGTH = 0x00010000&lt;BR /&gt; m_data_20000000 (RW) : ORIGIN = 0x20000000, LENGTH = 0x00010000&lt;BR /&gt; m_cfmprotrom (RX) : ORIGIN = 0x00000400, LENGTH = 0x00000010&lt;BR /&gt; m_programbuff (RW) : ORIGIN = 0x14000000, LENGTH = 0x00001000&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;|&lt;/P&gt;&lt;P&gt;|&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.relocate_code :&lt;BR /&gt; {&lt;BR /&gt; * (.relocate_code)&lt;BR /&gt; . = ALIGN (0x4);&lt;BR /&gt;} &amp;gt; m_programbuff&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;This worked perfectly all right for me.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After testing is done I created library (*.a) where this "&lt;SPAN&gt;FlashCommandSequence" function is used internally by a library function.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;As there is no LCF file in the library project. I am wondering how to place the code in RAM so that when this library is linked to another project by me end user the code is placed in RAM.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Rgds&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Uday&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Sep 2019 12:50:05 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Linker-file-for-Library/m-p/961337#M7862</guid>
      <dc:creator>info55</dc:creator>
      <dc:date>2019-09-07T12:50:05Z</dc:date>
    </item>
    <item>
      <title>Re: Linker file for Library</title>
      <link>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Linker-file-for-Library/m-p/961338#M7863</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Uday,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please check the below post in section &lt;STRONG&gt;Relocating particular libraries into RAM&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.nxp.com/thread/389110"&gt;Relocating code from FLASH to RAM&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Have a great day,&lt;BR /&gt;Felipe&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-------------------------------------------------------------------------------&lt;BR /&gt;Note:&lt;BR /&gt;- If this post answers your question, please click the "Mark Correct" button. Thank you!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- We are following threads for 7 weeks after the last post, later replies are ignored&lt;BR /&gt; Please open a new thread and refer to the closed one, if you have a related question at a later point in time.&lt;BR /&gt;-------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Sep 2019 16:09:46 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Linker-file-for-Library/m-p/961338#M7863</guid>
      <dc:creator>FelipeGarcia</dc:creator>
      <dc:date>2019-09-11T16:09:46Z</dc:date>
    </item>
    <item>
      <title>Re: Linker file for Library</title>
      <link>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Linker-file-for-Library/m-p/961339#M7864</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Felipe,&lt;/P&gt;&lt;P&gt;Thanks for taking time to reply. I saw the link and found that&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;"&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;The linker script template techniques described in this FAQ apply to LPCXpresso IDE v7.9.0"&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;As already mentioned I am using CW10.3 with PE, so I dont think this would be helpful.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;In the meantime I tried doing following and got success&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;In the code file&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;#pragma define_section relocate_code ".relocate_code"&amp;nbsp; far_abs RX&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;__declspec(relocate_code) UINT32 foo() &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;|&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;|&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="background-color: #ffffff; color: #51626f; "&gt;And in linker file *.lcf&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;___CodeStart = ___ROM_AT+ SIZEOF(.data); &lt;BR /&gt;.relocate_code : AT(___CodeStart)&lt;BR /&gt;{&lt;BR /&gt;. = ALIGN (0x4);&lt;BR /&gt;___myRAMStart = .;&lt;BR /&gt; * (.relocate_code)&lt;BR /&gt;___myRAMEnd = .;&lt;BR /&gt; . = ALIGN (0x4);&lt;BR /&gt;} &amp;gt; m_programbuff &lt;BR /&gt;___CodeSize = ___myRAMEnd - ___myRAMStart;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;This script I placed after the (.data) segment&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;And finally&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;_romp_at = ___ROM_AT + SIZEOF(.data) +SIZEOF(.m_data_20000000) +SIZEOF(.relocate_code); &lt;BR /&gt; .romp : AT(_romp_at)&lt;BR /&gt; {&lt;BR /&gt; __S_romp = _romp_at;&lt;BR /&gt; WRITEW(___ROM_AT);&lt;BR /&gt; WRITEW(ADDR(.data));&lt;BR /&gt; WRITEW(SIZEOF(.data));&lt;BR /&gt; WRITEW(___CodeStart);&lt;BR /&gt; WRITEW(___myRAMStart);&lt;BR /&gt; WRITEW(___CodeSize);&lt;BR /&gt; WRITEW(0);&lt;BR /&gt; WRITEW(0);&lt;BR /&gt; WRITEW(0);&lt;BR /&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;This worked for me when I am checking the library code and when the created library is&amp;nbsp;compiled in the end users code.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;This method I learned from AN4498-CodeWarrior Linker Command File (LCF) for&lt;BR /&gt;Kinetis&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;Thanks again..&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Sep 2019 13:48:43 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Linker-file-for-Library/m-p/961339#M7864</guid>
      <dc:creator>info55</dc:creator>
      <dc:date>2019-09-13T13:48:43Z</dc:date>
    </item>
    <item>
      <title>Re: Linker file for Library</title>
      <link>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Linker-file-for-Library/m-p/961340#M7865</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;Hello Felipe,&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;Thanks for taking time to reply. I saw the link and found that&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;&lt;STRONG style="border: 0px; font-weight: bold; font-size: 14px;"&gt;"&lt;SPAN style="color: #51626f; background-color: #ffffff; border: 0px; font-weight: inherit; font-size: 14px;"&gt;The linker script template techniques described in this FAQ apply to LPCXpresso IDE v7.9.0"&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff; border: 0px; font-weight: inherit; font-size: 14px;"&gt;As already mentioned I am using CW10.3 with PE, so I dont think this would be helpful.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff; border: 0px; font-weight: inherit; font-size: 14px;"&gt;In the meantime I tried doing following and got success&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff; border: 0px; font-weight: inherit; font-size: 14px;"&gt;In the code file&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;&lt;SPAN style="border: 0px; font-weight: inherit; font-size: 14px;"&gt;#pragma define_section relocate_code ".relocate_code"&amp;nbsp; far_abs RX&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;&lt;SPAN style="border: 0px; font-weight: inherit; font-size: 14px;"&gt;__declspec(relocate_code) UINT32 foo()&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;&lt;SPAN style="border: 0px; font-weight: inherit; font-size: 14px;"&gt;{&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;&lt;SPAN style="border: 0px; font-weight: inherit; font-size: 14px;"&gt;|&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;&lt;SPAN style="border: 0px; font-weight: inherit; font-size: 14px;"&gt;|&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;&lt;SPAN style="border: 0px; font-weight: inherit; font-size: 14px;"&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;&lt;STRONG style="color: #51626f; background-color: #ffffff; border: 0px; font-weight: bold; font-size: 14px;"&gt;And in linker file *.lcf&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff; border: 0px; font-weight: inherit; font-size: 14px;"&gt;___CodeStart = ___ROM_AT+ SIZEOF(.data);&lt;BR /&gt;.relocate_code : AT(___CodeStart)&lt;BR /&gt;{&lt;BR /&gt;. = ALIGN (0x4);&lt;BR /&gt;___myRAMStart = .;&lt;BR /&gt;* (.relocate_code)&lt;BR /&gt;___myRAMEnd = .;&lt;BR /&gt;. = ALIGN (0x4);&lt;BR /&gt;} &amp;gt; m_programbuff&lt;BR /&gt;___CodeSize = ___myRAMEnd - ___myRAMStart;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff; border: 0px; font-weight: inherit; font-size: 14px;"&gt;This script I placed after the (.data) segment&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff; border: 0px; font-weight: inherit; font-size: 14px;"&gt;And finally&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff; border: 0px; font-weight: inherit; font-size: 14px;"&gt;_romp_at = ___ROM_AT + SIZEOF(.data) +SIZEOF(.m_data_20000000) +SIZEOF(.relocate_code);&lt;BR /&gt;.romp : AT(_romp_at)&lt;BR /&gt;{&lt;BR /&gt;__S_romp = _romp_at;&lt;BR /&gt;WRITEW(___ROM_AT);&lt;BR /&gt;WRITEW(ADDR(.data));&lt;BR /&gt;WRITEW(SIZEOF(.data));&lt;BR /&gt;WRITEW(___CodeStart);&lt;BR /&gt;WRITEW(___myRAMStart);&lt;BR /&gt;WRITEW(___CodeSize);&lt;BR /&gt;WRITEW(0);&lt;BR /&gt;WRITEW(0);&lt;BR /&gt;WRITEW(0);&lt;BR /&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff; border: 0px; font-weight: inherit; font-size: 14px;"&gt;This worked for me when I am checking the library code and when the created library is&amp;nbsp;compiled in the end users code.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff; border: 0px; font-weight: inherit; font-size: 14px;"&gt;This method I learned from AN4498-CodeWarrior Linker Command File (LCF) for&lt;BR /&gt;Kinetis&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff; border: 0px; font-weight: inherit; font-size: 14px;"&gt;Thanks again..&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;&lt;/P&gt;&lt;P style="color: #51626f; background-color: #ffffff; border: 0px; font-size: 14px;"&gt;&lt;SPAN style="color: #51626f; background-color: #ffffff; border: 0px; font-weight: inherit; font-size: 14px;"&gt;Uday&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Sep 2019 13:49:32 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Linker-file-for-Library/m-p/961340#M7865</guid>
      <dc:creator>info55</dc:creator>
      <dc:date>2019-09-13T13:49:32Z</dc:date>
    </item>
  </channel>
</rss>

