Files
RedBear-OS/recipes/tools/gnu-binutils/source/ld/emulparams/x86-64-level-report.sh
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

26 lines
1.0 KiB
Bash

PARSE_AND_LIST_OPTIONS_X86_64_LEVEL_REPORT='
fprintf (file, _("\
-z isa-level-report=[none|all|needed|used] (default: none)\n\
Report x86-64 ISA level\n"));
'
PARSE_AND_LIST_ARGS_CASE_Z_X86_64_LEVEL_REPORT='
else if (strncmp (optarg, "isa-level-report=", 17) == 0)
{
if (strcmp (optarg + 17, "none") == 0)
params.isa_level_report = isa_level_report_none;
else if (strcmp (optarg + 17, "all") == 0)
params.isa_level_report = (isa_level_report_needed
| isa_level_report_used);
else if (strcmp (optarg + 17, "needed") == 0)
params.isa_level_report = isa_level_report_needed;
else if (strcmp (optarg + 17, "used") == 0)
params.isa_level_report = isa_level_report_used;
else
einfo (_("%F%P: invalid option for -z isa-level-report=: %s\n"),
optarg + 17);
}
'
PARSE_AND_LIST_OPTIONS="$PARSE_AND_LIST_OPTIONS $PARSE_AND_LIST_OPTIONS_X86_64_LEVEL_REPORT"
PARSE_AND_LIST_ARGS_CASE_Z="$PARSE_AND_LIST_ARGS_CASE_Z $PARSE_AND_LIST_ARGS_CASE_Z_X86_64_LEVEL_REPORT"