summaryrefslogtreecommitdiffhomepage
path: root/dev/CompilerKit/src
diff options
context:
space:
mode:
authorAmlal <amlal@nekernel.org>2025-08-12 19:38:55 +0200
committerAmlal <amlal@nekernel.org>2025-08-12 19:39:43 +0200
commit0c33b7b88bb3a96f1967937c7b7e0ff348a3d131 (patch)
treec27a00f414f84490ee302ee77c2e8de4e85c7abb /dev/CompilerKit/src
parent2a36b103240c5724d2a4a8dc4820d2ceea72e56b (diff)
abi! breaking ABI changes, PEF linker has been updated.
Signed-off-by: Amlal <amlal@nekernel.org>
Diffstat (limited to 'dev/CompilerKit/src')
-rw-r--r--dev/CompilerKit/src/Linker/DynamicLinker64PEF.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/dev/CompilerKit/src/Linker/DynamicLinker64PEF.cc b/dev/CompilerKit/src/Linker/DynamicLinker64PEF.cc
index 946a3c7..55ba9b4 100644
--- a/dev/CompilerKit/src/Linker/DynamicLinker64PEF.cc
+++ b/dev/CompilerKit/src/Linker/DynamicLinker64PEF.cc
@@ -313,8 +313,9 @@ NECTI_MODULE(DynamicLinker64PEF) {
command_header.Kind = ae_records[ae_record_index].fKind;
command_header.Size = ae_records[ae_record_index].fSize;
command_header.Cpu = hdr.fArch;
- command_header.VMAddress = org; /// TODO:
+ command_header.VMAddress = org;
command_header.SubCpu = hdr.fSubArch;
+ command_header.OffsetSize = ae_records[ae_record_index].fSize;
org += command_header.Size;