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.
26 lines
358 B
ArmAsm
26 lines
358 B
ArmAsm
.ifndef NO_GLOBAL
|
|
.ifdef HPUX
|
|
exported1 .comm 1
|
|
.else
|
|
.comm exported1,1
|
|
.endif
|
|
|
|
.data
|
|
.global exported2
|
|
.type exported2, %object
|
|
.size exported2, 1
|
|
exported2:
|
|
.byte 21
|
|
.endif
|
|
|
|
.section ".bss", "aw", %nobits
|
|
not_exported1:
|
|
.space 1
|
|
.size not_exported1, 1
|
|
|
|
.data
|
|
.type not_exported2, %object
|
|
.size not_exported2, 1
|
|
not_exported2:
|
|
.byte 42
|