ff4ff35918
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
35 lines
545 B
Plaintext
35 lines
545 B
Plaintext
ENTRY (foo_global)
|
|
SECTIONS
|
|
{
|
|
. = SIZEOF_HEADERS;
|
|
.interp : { *(.interp) }
|
|
.hash : { *(.hash) }
|
|
.dynsym : { *(.dynsym) }
|
|
.dynstr : { *(.dynstr) }
|
|
.gnu.version : { *(.gnu.version) }
|
|
.gnu.version_d : { *(.gnu.version_d) }
|
|
.rela.plt : { *(.rela.plt) }
|
|
|
|
. = 0x1000;
|
|
.plt : { *(.plt) }
|
|
|
|
. = 0x2000;
|
|
.text : { *(.text) }
|
|
|
|
. = 0x3000;
|
|
.dynamic : { *(.dynamic) }
|
|
.got : { *(.got.plt) }
|
|
};
|
|
VERSION
|
|
{
|
|
{
|
|
global:
|
|
foo_extern;
|
|
foo_global;
|
|
foo_hidden;
|
|
foo_rehidden;
|
|
local:
|
|
foo_local;
|
|
};
|
|
}
|