From 96ea259e3e3a3b1be7d0e3b589063340fc48cd2e Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Thu, 22 May 2025 08:25:35 +0200 Subject: feat(LibCompiler): Update AssemblyInterface's Arch method. also: - Figured out the segfault, currently working on a patch. - Better CLI output, with each library having it's prefix. - LibCompiler: `drv` - LibDebugger: `dbg` Signed-off-by: Amlal El Mahrouss --- dev/LibCompiler/src/CCompilerARM64.cc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'dev/LibCompiler/src/CCompilerARM64.cc') diff --git a/dev/LibCompiler/src/CCompilerARM64.cc b/dev/LibCompiler/src/CCompilerARM64.cc index 542f45f..3aaab5f 100644 --- a/dev/LibCompiler/src/CCompilerARM64.cc +++ b/dev/LibCompiler/src/CCompilerARM64.cc @@ -1049,9 +1049,7 @@ class AssemblyCCInterface final ASSEMBLY_INTERFACE { LIBCOMPILER_COPY_DEFAULT(AssemblyCCInterface); - [[maybe_unused]] Int32 Arch() noexcept override { - return LibCompiler::AssemblyFactory::kArchAARCH64; - } + UInt32 Arch() noexcept override { return LibCompiler::AssemblyFactory::kArchAARCH64; } Int32 CompileToFormat(std::string src, Int32 arch) override { if (kCompilerFrontend == nullptr) return 1; -- cgit v1.2.3