<?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>Classic/Legacy CodeWarrior中的主题 Re: No linker command file input for section '.boot' in file</title>
    <link>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/No-linker-command-file-input-for-section-boot-in-file/m-p/935021#M7635</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mohamed,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the update.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry I haven't noticed you are targeting MPC5553.&lt;/P&gt;&lt;P&gt;Indeed MPC55xx&amp;nbsp; is supported by CodeWarrior for MPC55xx/56xx v2.10 which you already have.&lt;/P&gt;&lt;P&gt;It is possible to use just the build tools &lt;SPAN&gt;(compiler, assembler and linker)&amp;nbsp;&lt;/SPAN&gt;form CodeWarrior for MCUs v10.X+ but it would require converting the IDE project into makefile one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You might rather try to either disable small data section 2 generation:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_65.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/88669i0D899EEF0AC1DC4D/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_65.png" alt="pastedImage_65.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or try to move .sdata2 .sbss2 into RAM instead of Flash.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;Stan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 19 Aug 2019 14:16:45 GMT</pubDate>
    <dc:creator>stanish</dc:creator>
    <dc:date>2019-08-19T14:16:45Z</dc:date>
    <item>
      <title>No linker command file input for section '.boot' in file</title>
      <link>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/No-linker-command-file-input-for-section-boot-in-file/m-p/935015#M7629</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using MPC5553, added some 3rd party stack and while compilation met with the below error/warnings,&lt;/P&gt;&lt;P&gt;Need help for the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am guessing this is related to linker command but not sure about it.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I do have internal and external RAM along with the flash.... Do you suggest any memory allocation/alignment or something...?&lt;/P&gt;&lt;P&gt;appreciated any kind of hint...&lt;/P&gt;&lt;P&gt;refer below the error:&lt;/P&gt;&lt;P&gt;========================================================================================&lt;/P&gt;&lt;P&gt;No linker command file input for section '.boot' in file 'abc\MPC55xx_init.o'.&lt;BR /&gt;Output section '.boot' will be created.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Link Error : Small data sections must have their own output sections specified in the linker command file.&lt;BR /&gt;No linker command file output section '.sbss2'.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Link failed.&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;========================================================================================&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Aug 2019 10:58:39 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/No-linker-command-file-input-for-section-boot-in-file/m-p/935015#M7629</guid>
      <dc:creator>mohammedzakari1</dc:creator>
      <dc:date>2019-08-01T10:58:39Z</dc:date>
    </item>
    <item>
      <title>Re: No linker command file input for section '.boot' in file</title>
      <link>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/No-linker-command-file-input-for-section-boot-in-file/m-p/935016#M7630</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this message tells you that some code was placed to a section (.boot) which does not exist in your linker file. So, it's necessary to create such section.&lt;/P&gt;&lt;P&gt;Here is simple example how to place a code/function to specific segment:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In linker file:&lt;/P&gt;&lt;P&gt;MEMORY&lt;BR /&gt;{&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; my_flash:&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; org = 0x00004000,&amp;nbsp;&amp;nbsp; len = 0x00002000&amp;nbsp;&amp;nbsp; //just example&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SECTIONS&lt;BR /&gt;{&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;.boot (VLECODE) LOAD (ADDR(my_flash)):{&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; } &amp;gt; my_flash&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;...&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In c file:&lt;/P&gt;&lt;P&gt;#pragma push&lt;BR /&gt;#pragma section code_type ".boot"&lt;BR /&gt;void test(void)&lt;BR /&gt;{&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;BR /&gt;}&lt;BR /&gt;#pragma pop&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then you can check map file and s-record file that the function is really placed to that section.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lukas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Aug 2019 07:43:37 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/No-linker-command-file-input-for-section-boot-in-file/m-p/935016#M7630</guid>
      <dc:creator>lukaszadrapa</dc:creator>
      <dc:date>2019-08-02T07:43:37Z</dc:date>
    </item>
    <item>
      <title>Re: No linker command file input for section '.boot' in file</title>
      <link>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/No-linker-command-file-input-for-section-boot-in-file/m-p/935017#M7631</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Lucas for you valuable input,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am one step ahead and need further help, appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have my code that runs external RAM support, below is my .lcf file snippet&amp;nbsp;&lt;/P&gt;&lt;P&gt;here if you see, I had to add .sbss2 section because of the error&lt;/P&gt;&lt;P&gt;=====================================================================&lt;/P&gt;&lt;P&gt;MEMORY&lt;BR /&gt;{&lt;BR /&gt; /**** Size in Kilo Byte (x 1024bytes) ****/&lt;BR /&gt; interrupts_flash: org = 0x00020000, len = 0x00002000 // 8 KiB 0.0078125 MiB &lt;BR /&gt; resetvector: org = 0x00022000, len = 0x00000008 // 8(32) bytes 0.0000305176 MiB&lt;BR /&gt; Identity_flash: org = 0x00022008, len = 0x00000010 // 16 bytes&lt;BR /&gt; init: org = 0x00022020, len = 0x00000FE0 // 4064 bytes 0.0038757324 MiB&lt;BR /&gt; internal_flash: org = 0x00023000, len = 0x000DD000 // 880 KiB 0.86328125 MiB&lt;BR /&gt; CoDeSys_flash: org = 0x00100000, len = 0x00080000 // 512 KiB 0.5000 MiB&lt;BR /&gt; &lt;BR /&gt; //-----------------------------&lt;BR /&gt; // 1536 KiB 1.5000 MiB&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; external_ram: org = 0x20000000, len = 0x00150000 // 1344 KiB 1.1875 MiB&lt;BR /&gt; stack : org = 0x20150000, len = 0x00020000 // 128 KiB 0.1250 MiB &lt;BR /&gt; heap : org = 0x20170000, len = 0x00090000 // 576 KiB 0.6875 MiB &lt;BR /&gt; //-----------------------------&lt;BR /&gt; // 2048 KiB 2.0000 MiB&lt;BR /&gt; &lt;BR /&gt; internal_ram: org = 0x40000000, len = 0x0000F000 // 61 KiB 0.0614 MiB&lt;BR /&gt; SimVar_ram: org = 0x4000F000, len = 0x00000800 // 2 KiB 0.02 MiB &lt;BR /&gt; CodeSysVar_ram: org = 0x4000F800, len = 0x00000800 // 2 KiB 0.02 MiB &lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;/* This will ensure the rchw and reset vector are not stripped by the linker */&lt;BR /&gt;//FORCEACTIVE { "bam_rchw" "bam_resetvector"}&lt;BR /&gt;//BIN_FILE_TYPE(MULTIPLE_BIN_FILES) // generates multiple .bin files&lt;BR /&gt;SECTIONS&lt;BR /&gt;{&lt;BR /&gt; /*.boot LOAD (0x00000000) : {} &amp;gt; boot_flash *//* LOAD (0x0) prevents relocation by ROM copy during startup */&lt;BR /&gt; &lt;BR /&gt; GROUP : &lt;BR /&gt; {&lt;BR /&gt; .entry LOAD (0x00022020) : &lt;BR /&gt; {&lt;BR /&gt; *(.entry)&lt;BR /&gt; .=ALIGN(0x10);&lt;BR /&gt; }&lt;BR /&gt; .init LOAD (0x00022020 + SIZEOF(.entry) ) : &lt;BR /&gt; {&lt;BR /&gt; *(.init)&lt;BR /&gt; } &lt;BR /&gt; } &amp;gt; init&lt;BR /&gt; &lt;BR /&gt; GROUP : {&lt;BR /&gt; /* Note: _e_ prefix enables load after END of that specified section */&lt;BR /&gt; .ivor_branch_table (TEXT) LOAD (ADDR(interrupts_flash)) : {}&lt;BR /&gt; .intc_hw_branch_table (TEXT) LOAD (_e_ivor_branch_table) ALIGN (0x800) : {}&lt;BR /&gt; .ivor_handlers (TEXT) LOAD (_e_intc_hw_branch_table) : {}&lt;BR /&gt; /* Each MPC555x handler require 16B alignmt */&lt;BR /&gt; } &amp;gt; interrupts_flash&lt;/P&gt;&lt;P&gt;GROUP : {&lt;BR /&gt; .intc_sw_isr_vector_table ALIGN (2048) : {} /* For INTC in SW Vector Mode */&lt;BR /&gt; .text : {&lt;BR /&gt; *(.text)&lt;BR /&gt; *(.rodata)&lt;BR /&gt; *(.ctors)&lt;BR /&gt; *(.dtors)&lt;BR /&gt; *(.init)&lt;BR /&gt; *(.fini)&lt;BR /&gt; *(.eini) &lt;BR /&gt; . = (.+15); &lt;BR /&gt; }&lt;BR /&gt; &lt;BR /&gt; .sdata2 : {}&lt;BR /&gt; &lt;STRONG&gt;.sbss2 : {} &lt;/STRONG&gt;&lt;BR /&gt; extab : {}&lt;BR /&gt; extabindex : {} &lt;BR /&gt; &lt;BR /&gt; . = ALIGN(0x10); &lt;BR /&gt; __FASTCODE_ROM = .; &lt;BR /&gt; &lt;BR /&gt; } &amp;gt; internal_flash&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; GROUP : { &lt;BR /&gt; __FASTCODE_RAM = .;&lt;BR /&gt; .funcInRam LOAD (__FASTCODE_ROM) : {&lt;BR /&gt; *(.funcInRam) &lt;BR /&gt; . = ALIGN(0x10);&lt;BR /&gt; } &lt;BR /&gt; . = ALIGN(0x10);&lt;BR /&gt; __FASTCODE_END = .; &lt;BR /&gt; __DATA_ROM_START = __FASTCODE_ROM + __FASTCODE_END - __FASTCODE_RAM;&lt;BR /&gt; .data (DATA) LOAD(__DATA_ROM_START) : {}&lt;BR /&gt; .sdata (DATA) LOAD(__DATA_ROM_START + SIZEOF(.data)) : {} &lt;BR /&gt; .sbss (BSS) : {}&lt;BR /&gt; .bss (BSS) : {}&lt;BR /&gt; .PPC.EMB.sdata0 : {} &lt;BR /&gt; &lt;BR /&gt; .PPC.EMB.sbss0 : {} &lt;BR /&gt; } &amp;gt; external_ram &lt;/P&gt;&lt;P&gt;&lt;BR /&gt;.identity LOAD (0x00022008): {} &amp;gt; Identity_flash&lt;/P&gt;&lt;P&gt;.variables LOAD(ROMADDR(.sdata)+SIZEOF(.sdata)) : {} &amp;gt; internal_ram&lt;/P&gt;&lt;P&gt;.__Simulink_ram LOAD(ROMADDR(.variables)+SIZEOF(.variables)) : {} &amp;gt; SimVar_ram&lt;/P&gt;&lt;P&gt;.__CodeSys_ram LOAD(ROMADDR(.__Simulink_ram)+SIZEOF(.__Simulink_ram)) : {} &amp;gt; CodeSysVar_ram&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;/* Freescale CodeWarrior compiler address designations */&lt;BR /&gt; _stack_addr = ADDR(stack)+SIZEOF(stack);&lt;BR /&gt; _stack_end = ADDR(.bss) + SIZEOF(.bss);&lt;BR /&gt; &lt;BR /&gt; _heap_addr = ADDR(heap);&lt;BR /&gt; _heap_end = ADDR(heap)+SIZEOF(heap);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;__IVPR_VALUE = ADDR(interrupts_flash);&lt;/P&gt;&lt;P&gt;/* L2 SRAM Location (used for L2 SRAM initialization) */&lt;BR /&gt; L2SRAM_LOCATION = 0x40000000;&lt;BR /&gt; AXM_0321_EXTERNAL_RAM = 0x20000000;&lt;/P&gt;&lt;P&gt;====================================================================&lt;/P&gt;&lt;P&gt;project compiles correctly, but it&amp;nbsp;&lt;SPAN&gt;generates&amp;nbsp;new warnings as below&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;+++++++++++++++++++++++++++++++++++++&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;multiply-defined: '__start' in Runtime.PPCEABI.E.UC.a in the file __start.o&lt;BR /&gt;Previously defined in __start.o &lt;BR /&gt;ignored: '__start' in Runtime.PPCEABI.E.UC.a from the file __start.o&lt;/P&gt;&lt;P&gt;multiply-defined: '__copy_rom_section' in Runtime.PPCEABI.E.UC.a in the file __start.o&lt;BR /&gt;Previously defined in __start.o &lt;BR /&gt;ignored: '__copy_rom_section' in Runtime.PPCEABI.E.UC.a from the file __start.o&lt;/P&gt;&lt;P&gt;multiply-defined: '__init_bss_section' in Runtime.PPCEABI.E.UC.a in the file __start.o&lt;BR /&gt;Previously defined in __start.o &lt;BR /&gt;ignored: '__init_bss_section' in Runtime.PPCEABI.E.UC.a from the file __start.o&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Overlap of the ROM image address of extab section with executable address of .sbss2 section.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;Overlap of the ROM image address of extab section with executable address of extab section.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;Overlap of the ROM image address of extabindex section with executable address of extabindex section.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;+++++++++++++++++++++++++++++++++++++&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Interstingly, I see that in MAP file, there are overlap and I dont know why it is coming and how to get rid of this warnings.&amp;nbsp; when these warnigns are available, my code is not working correclty.&lt;/P&gt;&lt;P&gt;*************************************************&lt;/P&gt;&lt;P&gt;Memory map:&lt;BR /&gt; Starting Size File ROM RAM Buffer S-Record Bin File Bin File&lt;BR /&gt; address Offset Address Address Line Offset Name&lt;BR /&gt; .entry 00022020 00000000 00000360 00022020 00022020 0 00000000 6026641-008_(size3_5_production_bootloadable).bin&lt;BR /&gt; .ivor_branch_table 00020000 00000000 00000360 00020000 00020000 0 00000000 6026641-008_(size3_5_production_bootloadable).bin&lt;BR /&gt; .intc_hw_branch_table 00020000 00001354 00000800 00020000 00020000 2 00000000 6026641-008_(size3_5_production_bootloadable).bin&lt;BR /&gt; .ivor_handlers 00021354 00000000 00001b54 00021354 00021354 0 00000000 6026641-008_(size3_5_production_bootloadable).bin&lt;BR /&gt; .text 00023000 000bb080 00001b60 00023000 00023000 251 00003000 6026641-008_(size3_5_production_bootloadable).bin&lt;BR /&gt; .sdata2 000de080 00000570 000bcbe0 000de080 000de080 38555 000be080 6026641-008_(size3_5_production_bootloadable).bin&lt;BR /&gt; &lt;STRONG&gt;.sbss2 000de5f0 00000010 000bd150 000de5f0 000de5f0 0 000be5f0 6026641-008_(size3_5_production_bootloadable).bin&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt; extab 000de600 000034e0 000bd150 000de5f0 000de5f0 38625 000be5f0 6026641-008_(size3_5_production_bootloadable).bin&lt;/STRONG&gt;&lt;BR /&gt; extabindex 000e1ae0 00004f70 000c0630 000e1ad0 000e1ad0 39302 000c1ad0 6026641-008_(size3_5_production_bootloadable).bin&lt;BR /&gt; .funcInRam 20000000 000000b0 000c55a0 000e6a50 000e6a50 40319 000c6a50 6026641-008_(size3_5_production_bootloadable).bin&lt;BR /&gt; .data 200000b0 00019d80 000c5650 000e6b00 000e6b00 40328 000c6b00 6026641-008_(size3_5_production_bootloadable).bin&lt;BR /&gt; .sdata 20019e30 000007ac 000df3d0 00100880 00100880 45621 000e0880 6026641-008_(size3_5_production_bootloadable).bin&lt;BR /&gt; .sbss 2001a5e0 00000d30 000dfb80 000e6a40 000e6a40 0 000c6a40 6026641-008_(size3_5_production_bootloadable).bin&lt;BR /&gt; .bss 2001b310 0011ee34 000dfb80 000e6a40 000e6a40 0 000c6a40 6026641-008_(size3_5_production_bootloadable).bin&lt;BR /&gt; .PPC.EMB.sdata0 2013a144 00000000 000dfb80 000e6a40 000e6a40 0 00000000 6026641-008_(size3_5_production_bootloadable).bin&lt;BR /&gt; .PPC.EMB.sbss0 2013a144 00000000 000dfb80 000e6a40 000e6a40 0 00000000 6026641-008_(size3_5_production_bootloadable).bin&lt;BR /&gt; .identity 00022008 00000008 000dfb80 00022008 00022008 250 00002008 6026641-008_(size3_5_production_bootloadable).bin&lt;BR /&gt; .variables 40000000 000059f8 000dfb88 00101030 00101030 45720 000e1030 6026641-008_(size3_5_production_bootloadable).bin&lt;BR /&gt; .__CodeSys_ram 4000f800 00000014 000e5580 00106a28 00106a28 46872 000e6a28 6026641-008_(size3_5_production_bootloadable).bin&lt;BR /&gt; .PPC.EMB.apuinfo 001c783c 00000000 002acdd0 002ae27c 002ae27c 0 00000000 6026641-008_(size3_5_production_bootloadable).bin&lt;BR /&gt; .debug_abbrev 000001e5 000e5594&lt;BR /&gt; .debug_info 000ad1f4 000e5779&lt;BR /&gt; .debug_aranges 00000080 0019296d&lt;BR /&gt; .debug_line 0008ca0e 001929ed&lt;BR /&gt; .debug_loc 0003d193 0021f3fb&lt;BR /&gt; .debug_pubnames 0000e22a 0025c58e&lt;/P&gt;&lt;P&gt;*************************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not sure who to get rid of these warnings, or why my code is not running correctly.&amp;nbsp; It simply loads PC with internal RAM address and then hangs there.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Aug 2019 10:56:21 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/No-linker-command-file-input-for-section-boot-in-file/m-p/935017#M7631</guid>
      <dc:creator>mohammedzakari1</dc:creator>
      <dc:date>2019-08-08T10:56:21Z</dc:date>
    </item>
    <item>
      <title>Re: No linker command file input for section '.boot' in file</title>
      <link>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/No-linker-command-file-input-for-section-boot-in-file/m-p/935018#M7632</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have asked my colleague to check this because he is more experienced in this area. I hope we will hear from him soon.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lukas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Aug 2019 05:06:23 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/No-linker-command-file-input-for-section-boot-in-file/m-p/935018#M7632</guid>
      <dc:creator>lukaszadrapa</dc:creator>
      <dc:date>2019-08-09T05:06:23Z</dc:date>
    </item>
    <item>
      <title>Re: No linker command file input for section '.boot' in file</title>
      <link>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/No-linker-command-file-input-for-section-boot-in-file/m-p/935019#M7633</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;It seems to me that lcf file is valid and no linker section overlap warning should be generated for sbss2 section.&lt;/P&gt;&lt;P&gt;Which version of CodeWarrior are you using?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There was an issue with an overlap message when sdata2/sbss2 section moved from RAM into Flash for&amp;nbsp;an older version of CodeWarrior for MPC55xx/56xx v2.x.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'd recommend you to&amp;nbsp;check with the latest available compiler (CodeWarrior for MCUs v11 - compiler version 4.3.315)&lt;/P&gt;&lt;P&gt;Attached are the compiler release notes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;Stan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Aug 2019 20:11:43 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/No-linker-command-file-input-for-section-boot-in-file/m-p/935019#M7633</guid>
      <dc:creator>stanish</dc:creator>
      <dc:date>2019-08-12T20:11:43Z</dc:date>
    </item>
    <item>
      <title>Re: No linker command file input for section '.boot' in file</title>
      <link>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/No-linker-command-file-input-for-section-boot-in-file/m-p/935020#M7634</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Stan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using CW version 5.9, I guess this is the latest supported version for the my controller, if you can confirm it will be great help. I am using mpc5553. please refer below snap for the Code Warrior, compiler and linker details,&lt;/P&gt;&lt;P&gt;If this is not the correct one, IS there anyway I can update the linker/compiler in the same CW version? or do i need to install the &lt;SPAN style="color: #51626f; background-color: #ffffff;"&gt;CodeWarrior for MCUs v11?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_1.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/88623i6F241DDA9756E301/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_1.png" alt="pastedImage_1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Mohammed&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Aug 2019 07:48:39 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/No-linker-command-file-input-for-section-boot-in-file/m-p/935020#M7634</guid>
      <dc:creator>mohammedzakari1</dc:creator>
      <dc:date>2019-08-19T07:48:39Z</dc:date>
    </item>
    <item>
      <title>Re: No linker command file input for section '.boot' in file</title>
      <link>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/No-linker-command-file-input-for-section-boot-in-file/m-p/935021#M7635</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mohamed,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the update.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry I haven't noticed you are targeting MPC5553.&lt;/P&gt;&lt;P&gt;Indeed MPC55xx&amp;nbsp; is supported by CodeWarrior for MPC55xx/56xx v2.10 which you already have.&lt;/P&gt;&lt;P&gt;It is possible to use just the build tools &lt;SPAN&gt;(compiler, assembler and linker)&amp;nbsp;&lt;/SPAN&gt;form CodeWarrior for MCUs v10.X+ but it would require converting the IDE project into makefile one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You might rather try to either disable small data section 2 generation:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="pastedImage_65.png"&gt;&lt;img src="https://community.nxp.com/t5/image/serverpage/image-id/88669i0D899EEF0AC1DC4D/image-size/large?v=v2&amp;amp;px=999" role="button" title="pastedImage_65.png" alt="pastedImage_65.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or try to move .sdata2 .sbss2 into RAM instead of Flash.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;Stan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Aug 2019 14:16:45 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/No-linker-command-file-input-for-section-boot-in-file/m-p/935021#M7635</guid>
      <dc:creator>stanish</dc:creator>
      <dc:date>2019-08-19T14:16:45Z</dc:date>
    </item>
    <item>
      <title>Re: No linker command file input for section '.boot' in file</title>
      <link>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/No-linker-command-file-input-for-section-boot-in-file/m-p/935022#M7636</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Stan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for the suggestions, I tried all but no luck yet, can you direct some more pointers please?&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Aug 2019 09:49:20 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Classic-Legacy-CodeWarrior/No-linker-command-file-input-for-section-boot-in-file/m-p/935022#M7636</guid>
      <dc:creator>mohammedzakari1</dc:creator>
      <dc:date>2019-08-21T09:49:20Z</dc:date>
    </item>
  </channel>
</rss>

