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.

Configure CCS Project for ARM Linux Executable (CCS 6.1.3, Processor SDK v3, AM5716)

Other Parts Discussed in Thread: AM5716

I have several CCS projects containing static libs for ARM Linux. And I have (for all static libs and the executable) normal Makefiles using the TI Processor SDK Linux 3. Now I would like to have a CCS "main" project to link the static libs into an executable, as the last step of the Makefile.
However, I get the error

no memory region specified for loadable section `.note.gnu.build-id'

I do not specify anything like that in the normal Makefile, but it builds successfully. Neither is the Makefile build using a "linker command file" like I have to specify (left at default) on the General Page of the Project settings. The new CCS Project has Variant AM5716 (Cortex-A), Compiler Version "GNU v5.3.1 (Linaro)" (from SDK), Output Type "Executable", Output Format "eabi (ELF)", Device endianness "little" and suggests to use AM571x.lds as Linker Command File.

Here is the command as the CCS Project tries to run to build the executable:

".../ti-processor-sdk-linux-am57xx-evm-03.00.00.04/linux-devkit/sysroots/x86_64-arago-linux/usr/bin/arm-linux-gnueabihf-gcc" -Dam5716 -g -gdwarf-3 -gstrict-dwarf -Wall -Wl,-Map,"name.map" -Wl,--gc-sections -L(library paths follow) -Wl,--defsym,STCKSIZE=0x10000 -Wl,--defsym,HEAPSIZE=0x400 -o"name.out" "./startup_ARMCA15.o" -Wl,-T"../AM571x.lds" -Wl,--start-group -lm -l(more libs) -lc -Wl,--end-group

The stuff in italic has no match in the normal Makefile whose call of the linker looks like this:

"(samepath)...arm-linux-gnueabihf-gcc -march=armv7ve -arm -mfpu=neon -mfloat-abi=hard -mcpu=cortex-a15 --sysroot (processor-sdk-sysroot)/cortexa15hf-neon-linux-gnueabi -oname.out -Wl,--start-group (libs follow) -Wl,--end-group -lm -lrt -pthread -lstdc++

How can I legally configure the CCS executable project to behave the same as the Makefile build? - Thanks a lot in advance