summaryrefslogtreecommitdiffhomepage
path: root/dev/LibCompiler/src/Linkers/DynamicLinkerPEF.cc
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-06-18 10:27:31 +0200
committerAmlal El Mahrouss <amlal@nekernel.org>2025-06-18 10:27:31 +0200
commitfbbcfd27436fe61799c79aec14f9c2c3fdf73497 (patch)
treed8be437f572605462637007f6bd371b6b4a650cb /dev/LibCompiler/src/Linkers/DynamicLinkerPEF.cc
parent2a1e217019f66b1913034b6bd760052f3b37cea4 (diff)
feat: PEF format update `5.0` and codebase refactors.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/LibCompiler/src/Linkers/DynamicLinkerPEF.cc')
-rw-r--r--dev/LibCompiler/src/Linkers/DynamicLinkerPEF.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/dev/LibCompiler/src/Linkers/DynamicLinkerPEF.cc b/dev/LibCompiler/src/Linkers/DynamicLinkerPEF.cc
index b58c786..a383351 100644
--- a/dev/LibCompiler/src/Linkers/DynamicLinkerPEF.cc
+++ b/dev/LibCompiler/src/Linkers/DynamicLinkerPEF.cc
@@ -69,7 +69,7 @@
namespace Detail {
struct DynamicLinkerBlob final {
std::vector<Char> mBlob{}; // PEF code/bss/data blob.
- UIntPtr mOffset{0UL}; // the offset of the PEF container header...
+ UIntPtr mOffset{0UL}; // the offset of the PEF container header...
};
} // namespace Detail
@@ -367,6 +367,7 @@ LIBCOMPILER_MODULE(DynamicLinker64PEF) {
}
kConsoleOut << "Not an AE container: " << objectFile << std::endl;
+
// don't continue, it is a fatal error.
return LIBCOMPILER_EXEC_ERROR;
}