Files
RedBear-OS/recipes/tools/gnu-binutils/source/ld/testsuite/ld-powerpc/aix-weak-1b.s
T
vasilito ff4ff35918 feat: track all source trees in git — full fork offline-first model
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.
2026-05-14 10:55:53 +01:00

25 lines
289 B
ArmAsm

.globl a
.csect a[RW],2
a:
.long 0x55555555
.weak b
.csect b[RW],2
b:
.long 0x66666666
.comm c,4
.comm d,4
# Same again, with weak common symbols
.globl e
.csect e[RW],2
e:
.long 0x77777777
.weak f
.csect f[RW],2
f:
.long 0x88888888
.weak g
.comm g,4
.weak h
.comm h,4