diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-09 03:07:48 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-09 03:07:48 +0100 |
| commit | 0c54fbd1a74242c568749b7293f2f319c4842d44 (patch) | |
| tree | 86cdac041fc0a0f4e17d839d48e5ff7cea3cc5a7 /src/Tools/pef-arm64-cdrv.cc | |
| parent | cfa04915a4c7d77996b49279b5891d1402f439a5 (diff) | |
chore: codebase chore and API breaking changes.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'src/Tools/pef-arm64-cdrv.cc')
| -rw-r--r-- | src/Tools/pef-arm64-cdrv.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Tools/pef-arm64-cdrv.cc b/src/Tools/pef-arm64-cdrv.cc index 3e6c3b2..08aaa75 100644 --- a/src/Tools/pef-arm64-cdrv.cc +++ b/src/Tools/pef-arm64-cdrv.cc @@ -21,11 +21,11 @@ static auto kPath = "/usr/lib/libCompilerKit.so"; static auto kSymbol = "CompilerCLangARM64"; Int32 main(Int32 argc, Char const* argv[]) { - CompilerKit::DLLTraits dylib; + CompilerKit::DLLLoader dylib; dylib(kPath, kSymbol); - CompilerKit::DLLTraits::Entrypoint entrypoint_cxx = - reinterpret_cast<CompilerKit::DLLTraits::Entrypoint>(dylib.fEntrypoint); + CompilerKit::DLLLoader::EntryT entrypoint_cxx = + reinterpret_cast<CompilerKit::DLLLoader::EntryT>(dylib.fEntrypoint); if (!entrypoint_cxx) { kStdOut; |
