I downloaded the demo software package of the RDAIRBAGPSI5 reference from https://community.nxp.com/t5/NXP-Designs-Knowledge-Base/RDAIRBAGPSI5-Airbag-Reference-Platform/ta-p/... and used the Airbag Evaluation Platform。 I find the Airbag Evaluation Platform use MPC5602P, but the software used MPC5604P. so I porting APR software to MPC5602P platform. when I use CodeWarrior 11.1 to build, I find some warning eg:
'Building target: Airbag. elf' 'Executing target #52 Airbag. elf' 'Invoking: PowerPC Linker' "C:/Freescale/CW MCU v11.1/MCU/PA_Tools/Command_Line_Tools/mwldeppc" -o "Airbag.elf" @@"Airbag.args" C:/Freescale/CW MCU v11.1/MCU/PA_Tools/Command_Line_Tools/mwldeppc|Linker|Warning >No linker command file input for section '.CstHAL' in file >'C:\Users\liu\workspace\Airbag\RAM\Sources\HAL\HAL_c.obj'. >Output section '.CstHAL' will be created. C:/Freescale/CW MCU v11.1/MCU/PA_Tools/Command_Line_Tools/mwldeppc|Linker|Warning >Specified length of memory directive 'internal_ram' was exceeded within >section '.text_vle': specified 0x00003000 but length is now 0x0000773C. C:/Freescale/CW MCU v11.1/MCU/PA_Tools/Command_Line_Tools/mwldeppc|Linker|Warning >Overlap of the .text_vle section and stack section. C:/Freescale/CW MCU v11.1/MCU/PA_Tools/Command_Line_Tools/mwldeppc|Linker|Warning >Overlap of the .text_vle section and heap section. 'Finished building target: Airbag. elf'
Those are just warnings. Nothing to be worried about as I see your elf was build.
Do the application running?
Warnings are be caused by different memory sizes between linkers for MPC5604 and 02, so make sure your code fit to sections sizes in linker to get rid of the warnings.