This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
I am trying to build the CC1310's SWI_CC1310DK_7XD_TI_CC1310F128 example as it is without any modification on code composer.
The build succeeds when I set the configuration to Debug.
Linking fails when I set the configuration to Release - the linker file appears identical between release and debug configuration where the warning appears for Release mode.
Debug mode links successfuly without any warnings.
This could be a typical newbie error could you point me, how to solve this
SECTIONS
{
.bootVecs: type = DSECT
.vecs: load > 0x20000000
.resetVecs: load > 0x0 <<< Warning about this line 721
xdc.meta: type = COPY
xdc.noload: type = COPY
}
RELEASE LINK output - Fails
Building target: swi_CC1310DK_7XD_TI_CC1310F128.out
Invoking: ARM Linker
"/home/krishnak/ti/ccsv6/tools/compiler/ti-cgt-arm_15.12.1.LTS/bin/armcl" -mv7M3 --code_state=16 --float_support=vfplib -me -O2 -g --define=ccs --diag_wrap=off --display_error_number --diag_warning=225 --diag_warning=255 --gen_func_subsections=on --abi=eabi -z -m"swi_CC1310DK_7XD_TI_CC1310F128.map" --stack_size=256 --heap_size=0 -i"/home/krishnak/ti/ccsv6/tools/compiler/ti-cgt-arm_15.12.1.LTS/lib" -i"/home/krishnak/ti/ccsv6/tools/compiler/ti-cgt-arm_15.12.1.LTS/include" --reread_libs --display_error_number --warn_sections --diag_wrap=off --xml_link_info="swi_CC1310DK_7XD_TI_CC1310F128_linkInfo.xml" --rom_model -o "swi_CC1310DK_7XD_TI_CC1310F128.out" "./CC1310DK_7XD.obj" "./ccfg.obj" "./swi.obj" -l"configPkg/linker.cmd" -l"/opt/ti/tirtos_cc13xx_cc26xx_2_16_00_08/products/cc13xxware_2_03_01_16780/driverlib/bin/ccs/driverlib.lib" -llibc.a
<Linking>
warning #10247-D: creating output section ".const" without a SECTIONS specification
warning #10247-D: creating output section ".ccfg" without a SECTIONS specification
warning #10247-D: creating output section ".text" without a SECTIONS specification
warning #10247-D: creating output section ".bss" without a SECTIONS specification
warning #10247-D: creating output section ".data" without a SECTIONS specification
warning #10247-D: creating output section ".bss:.common" without a SECTIONS specification
warning #10247-D: creating output section ".cinit" without a SECTIONS specification
"configPkg/linker.cmd", line 721: warning #10096-D: specified address lies outside memory map
error #10264: DEFAULT memory range overlaps existing memory range RAM
error #10010: errors encountered during linking; "swi_CC1310DK_7XD_TI_CC1310F128.out" not built
>> Compilation failure
makefile:140: recipe for target 'swi_CC1310DK_7XD_TI_CC1310F128.out' failed
gmake: *** [swi_CC1310DK_7XD_TI_CC1310F128.out] Error 1
gmake: Target 'all' not remade because of errors.
DEBUG Link output succeeds
Invoking: ARM Linker
"/home/krishnak/ti/ccsv6/tools/compiler/ti-cgt-arm_15.12.1.LTS/bin/armcl" -mv7M3 --code_state=16 --float_support=vfplib -me -g --define=ccs --diag_wrap=off --display_error_number --diag_warning=225 --diag_warning=255 --gen_func_subsections=on --abi=eabi -z -m"swi_CC1310DK_7XD_TI_CC1310F128.map" --stack_size=256 --heap_size=0 -i"/home/krishnak/ti/ccsv6/tools/compiler/ti-cgt-arm_15.12.1.LTS/lib" -i"/home/krishnak/ti/ccsv6/tools/compiler/ti-cgt-arm_15.12.1.LTS/include" --reread_libs --display_error_number --warn_sections --diag_wrap=off --xml_link_info="swi_CC1310DK_7XD_TI_CC1310F128_linkInfo.xml" --rom_model -o "swi_CC1310DK_7XD_TI_CC1310F128.out" "./CC1310DK_7XD.obj" "./ccfg.obj" "./swi.obj" "../CC1310DK_7XD.cmd" -l"configPkg/linker.cmd" -l"/opt/ti/tirtos_cc13xx_cc26xx_2_16_00_08/products/cc13xxware_2_03_01_16780/driverlib/bin/ccs/driverlib.lib" -llibc.a
<Linking>
Finished building target: swi_CC1310DK_7XD_TI_CC1310F128.out