diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2026-01-18 05:14:09 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2026-01-18 05:14:09 +0100 |
| commit | 575ea53014e918ad3fe0145ef3969fa269d10e95 (patch) | |
| tree | 5214f8ceffcb5c93dc97229beccf8595377c2c36 /include/CompilerKit | |
| parent | cd46596e5e74d4c44700a378c3cd60653502cfdd (diff) | |
feat: linkers: Final MachLinker.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'include/CompilerKit')
| -rw-r--r-- | include/CompilerKit/MachO.h | 6 |
1 files changed, 3 insertions, 3 deletions
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; |
