Tasking Tricore Eclipse IDE v6.3r1 build error in linker file

Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob
nazeem
Level 1
Level 1
10 sign-ins 5 sign-ins First like given

Hi ,

Below error showing in V6.3r1 in linker file,  but same Linker file can build successfully in V6.2r2.  let me know if any changes required  in linker file to build in V6.3r1.

ToolEnv\0_Build\1_Config\Config_Tricore_Tasking\Lcf_Tasking_Tricore_Tc.lsl" 844/18] LSL unexpected error: could not find heap section heap

ltc F019: unrecoverable error: fatal locate error

amk E452: ["makefile" 119/0] target 'Application.elf' returned exit code 1

amk E451: make stopped

 

 

 

Thanks and Regards

Nazeem.

0 Likes
1 Solution
nsyed
Level 5
Level 5
5 likes given 100 sign-ins 50 sign-ins

You need to create heap section in your linker file. The error is about missing heap section

section_setup :vtc:linear
{
my_heap "my_heap" (min_size = (1K), fixed, align = 8);
}

View solution in original post

1 Reply
nsyed
Level 5
Level 5
5 likes given 100 sign-ins 50 sign-ins

You need to create heap section in your linker file. The error is about missing heap section

section_setup :vtc:linear
{
my_heap "my_heap" (min_size = (1K), fixed, align = 8);
}