facf0c92e0
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.
23 lines
608 B
ArmAsm
23 lines
608 B
ArmAsm
.section .gnu.linkonce.t.foo, "a", %progbits
|
|
.L1:
|
|
.globl symfoo
|
|
symfoo:
|
|
.long 0
|
|
|
|
.section .gnu.linkonce.t.bar, "a", %progbits
|
|
.L2:
|
|
.globl symbar
|
|
symbar:
|
|
.long 0
|
|
|
|
.section .gnu.linkonce.r.foo, "a", %progbits
|
|
.long .L1
|
|
.long symfoo
|
|
/* ld currently incorrectly silently discards this relocation. Just such
|
|
relocations are never produced by g++-3.4 so this suppressed error message
|
|
is not a problem:
|
|
#error: `.gnu.linkonce.t.bar' referenced in section `.gnu.linkonce.r.foo' of tmpdir/dump1.o: defined in discarded section `.gnu.linkonce.t.bar' of tmpdir/dump1.o
|
|
*/
|
|
.long .L2
|
|
.long symbar
|