summaryrefslogtreecommitdiffhomepage
path: root/dev/LibCompiler/src/Linkers
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-05-28 18:12:17 +0200
committerAmlal El Mahrouss <amlal@nekernel.org>2025-05-28 18:12:17 +0200
commitd37f1a7381825d414e4b71c487eea509325f24c3 (patch)
treeb8df54b1da6a152e6f9a61b91b8feac90bdef4b9 /dev/LibCompiler/src/Linkers
parent26b2f0395db53b0bbb1915cd27ac2b99a4dbb0a2 (diff)
refactor: Refactor toolchain source code.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/LibCompiler/src/Linkers')
-rw-r--r--dev/LibCompiler/src/Linkers/DynamicLinkerPEF.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/dev/LibCompiler/src/Linkers/DynamicLinkerPEF.cc b/dev/LibCompiler/src/Linkers/DynamicLinkerPEF.cc
index 820b06d..b58c786 100644
--- a/dev/LibCompiler/src/Linkers/DynamicLinkerPEF.cc
+++ b/dev/LibCompiler/src/Linkers/DynamicLinkerPEF.cc
@@ -68,7 +68,7 @@
namespace Detail {
struct DynamicLinkerBlob final {
- std::vector<CharType> mBlob{}; // PEF code/bss/data blob.
+ std::vector<Char> mBlob{}; // PEF code/bss/data blob.
UIntPtr mOffset{0UL}; // the offset of the PEF container header...
};
} // namespace Detail
@@ -89,8 +89,8 @@ static Bool kStartFound = false;
static Bool kDuplicateSymbols = false;
/* ld64 is to be found, mld is to be found at runtime. */
-static const CharType* kLdDefineSymbol = ":UndefinedSymbol:";
-static const CharType* kLdDynamicSym = ":RuntimeSymbol:";
+static const Char* kLdDefineSymbol = ":UndefinedSymbol:";
+static const Char* kLdDynamicSym = ":RuntimeSymbol:";
/* object code and list. */
static std::vector<LibCompiler::STLString> kObjectList;