summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAmlal EL Mahrouss <amlalelmahrouss@icloud.com>2024-07-28 06:32:56 +0200
committerAmlal EL Mahrouss <amlalelmahrouss@icloud.com>2024-07-28 06:32:56 +0200
commit231899b44a7294bb968c2a930c97f76990376f41 (patch)
treeb1fa96a4211a1563b3ebc7724aa3c281ea8fa56f
parent00df8fa52de0a5a379bfd36b34d4502251ceec72 (diff)
[MHR-21] Refactor linker.
Signed-off-by: Amlal EL Mahrouss <amlalelmahrouss@icloud.com>
-rw-r--r--NDKKit/Sources/link.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/NDKKit/Sources/link.cxx b/NDKKit/Sources/link.cxx
index d59c982..0708bd0 100644
--- a/NDKKit/Sources/link.cxx
+++ b/NDKKit/Sources/link.cxx
@@ -52,13 +52,13 @@
enum
{
eABIStart = 0x1010, /* Invalid ABI start of ABI list. */
- eABINewOSKrnl = 0x5046, /* PF (NewOSKrnl) */
+ eABINewOS = 0x5046, /* PF (NewOSKrnl) */
eABIMTL = 0x4650, /* FP (MTL firmware) */
eABIInvalid = 1,
};
static std::string kOutput = "";
-static Int32 kAbi = eABINewOSKrnl;
+static Int32 kAbi = eABINewOS;
static Int32 kSubArch = kPefNoSubCpu;
static Int32 kArch = CompilerKit::kPefArchInvalid;
static Bool kFatBinaryEnable = false;