Files
RedBear-OS/recipes/tools/gnu-binutils/source/ld/testsuite/ld-msp430-elf/finiarray-warn.ld
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

47 lines
832 B
Plaintext

/* Script for ld testsuite */
OUTPUT_ARCH(msp430)
ENTRY(_start)
SECTIONS
{
.text :
{
PROVIDE (_start = .);
. = ALIGN(2);
*(.text .stub .text.* .gnu.linkonce.t.* .text:*)
}
.rodata :
{
*(.rodata.* .rodata)
. = ALIGN(2);
PROVIDE (__preinit_array_start = .);
KEEP (*(SORT(.preinit_array.*)))
KEEP (*(.preinit_array))
PROVIDE (__preinit_array_end = .);
. = ALIGN(2);
PROVIDE (__init_array_start = .);
KEEP (*(SORT(.init_array.*)))
KEEP (*(.init_array))
PROVIDE (__init_array_end = .);
. = ALIGN(2);
. += 1;
PROVIDE (__fini_array_start = .);
KEEP (*(SORT(.fini_array.*)))
KEEP (*(.fini_array))
PROVIDE (__fini_array_end = .);
}
.data :
{
. = ALIGN(2);
*(.data.* .data)
}
.bss :
{
. = ALIGN(2);
*(.bss.* .bss)
}
}