Tagged Questions
2
votes
1answer
615 views
What do the .eh_frame and .eh_frame_hdr sections store, exactly?
I know that, when using languages that support exceptions, such as C++, additional information must be provided to the runtime environment that describes the call frames that much be unwound during ...
0
votes
1answer
102 views
Global variable referenced in section '.text' of main.o defined in discarded section '.bss'
In my main.c, I have int cursor = 0;.
This is later used in a function, where I use cursor += 1.
When I compile / link, I get an error:
cursor' referenced in section .text' of main.o: defined in ...
2
votes
4answers
144 views
Compiler optimizations not compiling constant?
I have the following string declared as a constant in my code. The purpose is to provide a crude and simple way of storing simple metadata in the compiled output.
const char myString1[] ="abc123\0";
...
4
votes
1answer
2k views
How do I specify output sections in C files compiled using GCC?
In assembly language I use .section directive to tell the assembler what section to output to e.g
.section init
Is there a way to do the same in C files. I want the code for some files to go into ...
0
votes
2answers
186 views
what does =0 at the end of section definition in ld script means?
I just saw a section definition with =0 at the end i.e
.init :
{
KEEP (*(.init))
} =0
What does that =0 at the end means and what is its significance?
4
votes
2answers
445 views
How to get a pointer to a binary section in MSVC?
I'm writing some code which stores some data structures in a special named binary section. These are all instances of the same struct which are scattered across many C files and are not within scope ...
0
votes
1answer
82 views
Creating a list similar to .ctors from multiple object files
I'm currently at a point where I need to link in several modules (basically ELF object files) to my main executable due to a limitation of our target (background: kernel, targeting the ARM ...
1
vote
3answers
55 views
Unexpected behavior of write operations when creating a custom section in EEPROM using GCC
Here is my question,
I work on an application embeded in a board we manufactured ourselves for a space project.
The board uses a LEON2 Processor which is a derivate of SPARC v8 and we also use RTEMS ...