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.
16 lines
480 B
Raku
16 lines
480 B
Raku
defined6 = DEFINED (sym2) ? 1 : 0;
|
|
SECTIONS {
|
|
.text : { *(.text .pr) sym2 = .; }
|
|
.data : { *(.data) }
|
|
.bss : { *(.bss) *(COMMON) }
|
|
}
|
|
defined4 = DEFINED (sym1) ? 1 : 0;
|
|
sym1 = 42;
|
|
defined3 = DEFINED (defined1) ? defined1 + 1 : 256;
|
|
defined1 = DEFINED (defined1) ? defined1 + 1 : 512;
|
|
defined2 = DEFINED (defined1) ? defined1 + 1 : 1024;
|
|
defined5 = DEFINED (sym1) ? sym1 : 0;
|
|
defined7 = DEFINED (sym2);
|
|
defined8 = !DEFINED (defined8);
|
|
defined = DEFINED (defined) ? defined : 42;
|