<?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 Porting LCF file in CodeWarrior Development Tools</title>
    <link>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Porting-LCF-file/m-p/432945#M3014</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Good Morning,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I'm doing the inclusion of a bootloader on uC Kinetis using the GCC compiler. For this I am using the document "MCU_Kinetis_GCC" but had the problem include the binary file described in step 14c the page 45. This step says the following:&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;14. INCLUDE filename&lt;/P&gt;&lt;P&gt;CW LCF:&lt;/P&gt;&lt;P&gt;.my_text{ INCLUDE filename }&amp;gt;my_text&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;GCC LD:&lt;/P&gt;&lt;P&gt;Equivalent syntax in GCC LD,&lt;/P&gt;&lt;P&gt;INPUT(file, file, ...) INPUT(file file ...)&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Command line options to include binary file [default section as .data.]&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE&lt;/P&gt;&lt;P&gt;Binary filename: data.raw, Format: binary&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;a. Create a stationary project.&lt;/P&gt;&lt;P&gt;b. Go to Properties &amp;gt; C/C++Build &amp;gt; Settings &amp;gt; ARM Ltd. Windows GCC C&lt;/P&gt;&lt;P&gt;Linker &amp;gt; Miscellaneous &amp;gt; Other flags&lt;/P&gt;&lt;P&gt;c. Add the following options.&amp;nbsp; -Wl,-b,binary,"C:/data.raw",-b, elf32-littlearm&lt;/P&gt;&lt;P&gt;This makes linker to treat data.raw as raw binary and resume to elf32-littlearm&lt;/P&gt;&lt;P&gt;for subsequent objects.&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The final elf will contain the following symbols for the sources to manipulate the&lt;/P&gt;&lt;P&gt;data:&lt;/P&gt;&lt;P&gt;_binary_C___data_raw_start _binary_C___data_raw_end _binary_C__data_raw_size&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The default linker section will be .data.&lt;/P&gt;&lt;P&gt;To place the raw data in a specified linker section, define the section in the&lt;/P&gt;&lt;P&gt;Linker command file.&lt;/P&gt;&lt;P&gt;a. Define the following section.&lt;/P&gt;&lt;P&gt;MEMORY{&lt;/P&gt;&lt;P&gt;..&lt;/P&gt;&lt;P&gt;m_srecord&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (RX) : ORIGIN = 0x0000C000, LENGTH = 0x00004000/*define its memory &lt;/P&gt;&lt;P&gt;segment*/&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;TARGET(binary)/* specify the file format of binary file */&lt;/P&gt;&lt;P&gt;INPUT (data.raw)/* provide the file name */&lt;/P&gt;&lt;P&gt;OUTPUT_FORMAT(default)/* restore the out file format */&lt;/P&gt;&lt;P&gt;/* Define output sections */&lt;/P&gt;&lt;P&gt;SECTIONS&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;.srecord :&lt;/P&gt;&lt;P&gt;&amp;nbsp; {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt; data.raw (.data)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; . = ALIGN (0x4);&lt;/P&gt;&lt;P&gt;&amp;nbsp; } &amp;gt; m_srecord&lt;/P&gt;&lt;P&gt;.text:&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;..&lt;/P&gt;&lt;P&gt;}&amp;gt;m_text&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;b. Add the path of the file added in the previous step to ARM Ltd. GCC C&lt;/P&gt;&lt;P&gt;Linker-&amp;gt;Libraries-&amp;gt;Library search path (-L)&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;When I finish running this script the following error is generated by the compiler :&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #e23d39;"&gt;"C:/Freescale/CW MCU v10.6/Cross_Tools/arm-none-eabi-gcc-4_7_3/bin/arm-none-eabi-gcc"&amp;nbsp;&amp;nbsp;&amp;nbsp; @"MDL100_KL16Z128.args" -o"MDL100_KL16Z128.elf"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #e23d39;"&gt;arm-none-eabi-gcc: error: elf32-littlearm: No such file or directory&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #e23d39;"&gt;mingw32-make: *** [MDL100_KL16Z128.elf] Error 1&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;The command that includes on step 14&lt;/STRONG&gt; (Add the following options.&amp;nbsp; -Wl,-b,binary,"C:/data.raw",-b, elf32-littlearm) &lt;STRONG&gt;is the following:&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-Wl,-b,binary,"${ProjDirPath}\FLASH\Boot_MK16Z128.bin",-b, elf32-littlearm&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;The command that includes on step 14&lt;/STRONG&gt; (Add the path of the file added in the previous step to ARM Ltd. GCC C Linker-&amp;gt;Libraries-&amp;gt;Library search path (-L)) &lt;STRONG&gt;is the following:&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"${ProjDirPath}\FLASH\Boot_MK16Z128.bin"&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you help me?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 14 May 2015 12:30:42 GMT</pubDate>
    <dc:creator>tiagoguimaraes</dc:creator>
    <dc:date>2015-05-14T12:30:42Z</dc:date>
    <item>
      <title>Porting LCF file</title>
      <link>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Porting-LCF-file/m-p/432945#M3014</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Good Morning,&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I'm doing the inclusion of a bootloader on uC Kinetis using the GCC compiler. For this I am using the document "MCU_Kinetis_GCC" but had the problem include the binary file described in step 14c the page 45. This step says the following:&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;14. INCLUDE filename&lt;/P&gt;&lt;P&gt;CW LCF:&lt;/P&gt;&lt;P&gt;.my_text{ INCLUDE filename }&amp;gt;my_text&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;GCC LD:&lt;/P&gt;&lt;P&gt;Equivalent syntax in GCC LD,&lt;/P&gt;&lt;P&gt;INPUT(file, file, ...) INPUT(file file ...)&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Command line options to include binary file [default section as .data.]&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE&lt;/P&gt;&lt;P&gt;Binary filename: data.raw, Format: binary&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;a. Create a stationary project.&lt;/P&gt;&lt;P&gt;b. Go to Properties &amp;gt; C/C++Build &amp;gt; Settings &amp;gt; ARM Ltd. Windows GCC C&lt;/P&gt;&lt;P&gt;Linker &amp;gt; Miscellaneous &amp;gt; Other flags&lt;/P&gt;&lt;P&gt;c. Add the following options.&amp;nbsp; -Wl,-b,binary,"C:/data.raw",-b, elf32-littlearm&lt;/P&gt;&lt;P&gt;This makes linker to treat data.raw as raw binary and resume to elf32-littlearm&lt;/P&gt;&lt;P&gt;for subsequent objects.&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The final elf will contain the following symbols for the sources to manipulate the&lt;/P&gt;&lt;P&gt;data:&lt;/P&gt;&lt;P&gt;_binary_C___data_raw_start _binary_C___data_raw_end _binary_C__data_raw_size&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The default linker section will be .data.&lt;/P&gt;&lt;P&gt;To place the raw data in a specified linker section, define the section in the&lt;/P&gt;&lt;P&gt;Linker command file.&lt;/P&gt;&lt;P&gt;a. Define the following section.&lt;/P&gt;&lt;P&gt;MEMORY{&lt;/P&gt;&lt;P&gt;..&lt;/P&gt;&lt;P&gt;m_srecord&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (RX) : ORIGIN = 0x0000C000, LENGTH = 0x00004000/*define its memory &lt;/P&gt;&lt;P&gt;segment*/&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;TARGET(binary)/* specify the file format of binary file */&lt;/P&gt;&lt;P&gt;INPUT (data.raw)/* provide the file name */&lt;/P&gt;&lt;P&gt;OUTPUT_FORMAT(default)/* restore the out file format */&lt;/P&gt;&lt;P&gt;/* Define output sections */&lt;/P&gt;&lt;P&gt;SECTIONS&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;.srecord :&lt;/P&gt;&lt;P&gt;&amp;nbsp; {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt; data.raw (.data)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; . = ALIGN (0x4);&lt;/P&gt;&lt;P&gt;&amp;nbsp; } &amp;gt; m_srecord&lt;/P&gt;&lt;P&gt;.text:&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;..&lt;/P&gt;&lt;P&gt;}&amp;gt;m_text&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;b. Add the path of the file added in the previous step to ARM Ltd. GCC C&lt;/P&gt;&lt;P&gt;Linker-&amp;gt;Libraries-&amp;gt;Library search path (-L)&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;When I finish running this script the following error is generated by the compiler :&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #e23d39;"&gt;"C:/Freescale/CW MCU v10.6/Cross_Tools/arm-none-eabi-gcc-4_7_3/bin/arm-none-eabi-gcc"&amp;nbsp;&amp;nbsp;&amp;nbsp; @"MDL100_KL16Z128.args" -o"MDL100_KL16Z128.elf"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #e23d39;"&gt;arm-none-eabi-gcc: error: elf32-littlearm: No such file or directory&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #e23d39;"&gt;mingw32-make: *** [MDL100_KL16Z128.elf] Error 1&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;The command that includes on step 14&lt;/STRONG&gt; (Add the following options.&amp;nbsp; -Wl,-b,binary,"C:/data.raw",-b, elf32-littlearm) &lt;STRONG&gt;is the following:&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;-Wl,-b,binary,"${ProjDirPath}\FLASH\Boot_MK16Z128.bin",-b, elf32-littlearm&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;The command that includes on step 14&lt;/STRONG&gt; (Add the path of the file added in the previous step to ARM Ltd. GCC C Linker-&amp;gt;Libraries-&amp;gt;Library search path (-L)) &lt;STRONG&gt;is the following:&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;"${ProjDirPath}\FLASH\Boot_MK16Z128.bin"&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P style="min-height: 8pt; padding: 0px;"&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you help me?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2015 12:30:42 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Porting-LCF-file/m-p/432945#M3014</guid>
      <dc:creator>tiagoguimaraes</dc:creator>
      <dc:date>2015-05-14T12:30:42Z</dc:date>
    </item>
    <item>
      <title>Re: Porting LCF file</title>
      <link>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Porting-LCF-file/m-p/432946#M3015</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Tiago,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have been able to reproduce the issue you mention. When you copy the linker options from the document there is a space before elf32-littlearm:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Wl,-b,binary,"C:/data.raw",-b, elf32-littlearm&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This space is causing the issue, so please try removing the space and the error should be gone:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Wl,-b,binary,"C:/data.raw",-b,elf32-littlearm&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Carlos Mendoza&lt;/P&gt;&lt;P&gt;Technical Support Engineer&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;Note: If this post answers your question, please click the Correct Answer button. Thank you!&lt;/P&gt;&lt;P&gt;-----------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2015 21:51:22 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Porting-LCF-file/m-p/432946#M3015</guid>
      <dc:creator>Carlos_Mendoza</dc:creator>
      <dc:date>2015-05-14T21:51:22Z</dc:date>
    </item>
    <item>
      <title>Re: Porting LCF file</title>
      <link>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Porting-LCF-file/m-p/432947#M3016</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the answer , the solution provided is correct . The project is now compiling but still can not get the include " Boot_MK16Z128.bin ". I executed all the steps as indicated in section 14 of the document , however the data Boot loader still do not appear in .bin project that did include.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have no idea what can be ?&lt;/P&gt;&lt;P&gt;Follows the excerpt from my LD file that do include :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MEMORY {&lt;/P&gt;&lt;P&gt;&amp;nbsp; m_bootloader (RX) : ORIGIN = 0x00000000, LENGTH = 0x00004000&lt;/P&gt;&lt;P&gt;&amp;nbsp; m_interrupts (RX) : ORIGIN = 0x00004000, LENGTH = 0x00000400&lt;/P&gt;&lt;P&gt;&amp;nbsp; m_cfmprotrom&amp;nbsp; (RX) : ORIGIN = 0x00004400, LENGTH = 0x00000100&lt;/P&gt;&lt;P&gt;&amp;nbsp; m_app_info&amp;nbsp;&amp;nbsp; (RX) : ORIGIN = 0x00004500, LENGTH = 0x00000100&lt;/P&gt;&lt;P&gt;&amp;nbsp; m_text&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (RX) : ORIGIN = 0x00004600, LENGTH = 0x0000D900&lt;/P&gt;&lt;P&gt;&amp;nbsp; m_app_flash_vars (RX) : ORIGIN = 0x00011F00, LENGTH = 0x00000400&lt;/P&gt;&lt;P&gt;&amp;nbsp; m_new_image&amp;nbsp; (RX) : ORIGIN = 0x00012300, LENGTH = 0x0000D900&lt;/P&gt;&lt;P&gt;&amp;nbsp; m_new_image_status&amp;nbsp; (RX) : ORIGIN = 0x0001FC00, LENGTH = 0x00000400&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; m_data&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (RW) : ORIGIN = 0x1FFFF000, LENGTH = 0x00004000&amp;nbsp; &lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TARGET(binary)/* specify the file format of binary file */&lt;/P&gt;&lt;P&gt;INPUT (Boot_MK16Z128.bin)/* provide the file name */&lt;/P&gt;&lt;P&gt;OUTPUT_FORMAT(default)/* restore the out file format */&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SECTIONS&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; .bootloader :&lt;/P&gt;&lt;P&gt;&amp;nbsp; {&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Boot_MK16Z128.bin (.Boot_MK16Z128)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; . = ALIGN (0x4);&lt;/P&gt;&lt;P&gt;&amp;nbsp; } &amp;gt; m_bootloader&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; .app_info : &lt;/P&gt;&lt;P&gt;&amp;nbsp; {&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; * (.info)&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; KEEP(*(.info))&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; . = ALIGN(0x1);&lt;/P&gt;&lt;P&gt;&amp;nbsp; } &amp;gt; m_app_info&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;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 May 2015 17:21:37 GMT</pubDate>
      <guid>https://community.nxp.com/t5/CodeWarrior-Development-Tools/Porting-LCF-file/m-p/432947#M3016</guid>
      <dc:creator>tiagoguimaraes</dc:creator>
      <dc:date>2015-05-18T17:21:37Z</dc:date>
    </item>
  </channel>
</rss>

