Dec 15, 2019
06:59 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Dec 15, 2019
06:59 PM
Hello Support,
In the GNU LD [Linker/Loader], there is an attribute for output section called 'NOLOAD'.
Can you please provide me a Tasking LSL Script with similar behavior?
Refer:
http://osr507doc.sco.com/en/tools/ld_alloc_types.html
In the GNU LD [Linker/Loader], there is an attribute for output section called 'NOLOAD'.
Can you please provide me a Tasking LSL Script with similar behavior?
Refer:
http://osr507doc.sco.com/en/tools/ld_alloc_types.html
- Tags:
- IFX
3 Replies
Dec 16, 2019
04:40 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Dec 16, 2019
04:40 AM
Please provide more details about what you would like to do in your AURIX application. Is it about preventing the initialization of some sections which are located in RAM? Thanks.
Dec 16, 2019
08:02 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Dec 16, 2019
08:02 AM
Have you tried #pragma noclear / clear?
#pragma noclear // adjacent to variable
int var;
#pragma clear // adjacent to variable
Dec 24, 2019
10:38 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Dec 24, 2019
10:38 AM
Essentially, as you know that within Tasking Linker, one can automatically initialize Boot Mode Header area contents using BMHD_GENERATE macro.
Now, I want to create a section at the same address which will contain a struct variable.
In GCC, I can use NOLOAD attribute for the output section and hence GNU LD will overlay the struct variable at the address of the Boot Mode Header.
I am looking for a method using Tasking Linker.
Now, I want to create a section at the same address which will contain a struct variable.
In GCC, I can use NOLOAD attribute for the output section and hence GNU LD will overlay the struct variable at the address of the Boot Mode Header.
I am looking for a method using Tasking Linker.
This widget could not be displayed.