From 575ea53014e918ad3fe0145ef3969fa269d10e95 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sun, 18 Jan 2026 05:14:09 +0100 Subject: feat: linkers: Final MachLinker. Signed-off-by: Amlal El Mahrouss --- include/CompilerKit/MachO.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/CompilerKit') diff --git a/include/CompilerKit/MachO.h b/include/CompilerKit/MachO.h index a8a8b78..1b6282d 100644 --- a/include/CompilerKit/MachO.h +++ b/include/CompilerKit/MachO.h @@ -21,9 +21,9 @@ namespace MachO { constexpr const char* kSegmentPageZero = "__PAGEZERO"; /// @brief Mach-O section names - constexpr const char* kSectionText = "__text"; - constexpr const char* kSectionData = "__data"; - constexpr const char* kSectionBss = "__bss"; + constexpr const char* kSectionText = "__text"; + constexpr const char* kSectionData = "__data"; + constexpr const char* kSectionPageZero = "__pagezero"; /// @brief Default base address for Mach-O executables constexpr uint64_t kDefaultBaseAddress = 0x100000000ULL; -- cgit v1.2.3