2014-02-05 13:58:37 +00:00
|
|
|
/*
|
|
|
|
* Symbols that shall always be added to the section '.dynsym'
|
|
|
|
*/
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* The ctors and dtors symbols are not used by a dynamic program as such
|
|
|
|
* programs have no '_main' function. Hence the linker doesn't add them to
|
|
|
|
* the dynsym section by itself. However, we need to lookup the ctors and
|
|
|
|
* dtors arrays of the dynamic program in LDSO, which is why we must
|
|
|
|
* explicitely add them to the dynsym section.
|
|
|
|
*/
|
|
|
|
_ctors_start;
|
|
|
|
_ctors_end;
|
|
|
|
_dtors_start;
|
|
|
|
_dtors_end;
|
2016-12-22 14:01:19 +00:00
|
|
|
_ZN9Component9constructERN6Genode3EnvE;
|
|
|
|
_ZN9Component10stack_sizeEv;
|
|
|
|
main;
|
2014-02-05 13:58:37 +00:00
|
|
|
};
|