q/docs/macho.md
Eduard Urbach 744ddcde54
All checks were successful
/ test (push) Successful in 15s
Updated notes on Mach-O
2025-07-10 15:26:32 +02:00

940 B

Mach-O

Notes

  • The start of the file must be loaded in some segment.
  • The start of the file must be marked as readable + executable.
  • Load command size must be divisible by 8.
  • Segments must be page-aligned in the file1.

Due to the page alignment requirement on disk1 instead of just memory, MacOS is the only OS that forces you to write bloated executables on disk.

Until this check is removed, we cannot produce smaller executables.