diff options
| author | Amlal <amlal@nekernel.org> | 2025-08-17 17:00:45 +0200 |
|---|---|---|
| committer | Amlal <amlal@nekernel.org> | 2025-08-17 17:00:45 +0200 |
| commit | 0840fe1d19ef929d196d73b18ec927e1f6ea4909 (patch) | |
| tree | 0aff46a3cf2a59b32d3de53a9368a54badf6776b | |
| parent | 0c14f7cff6535d110bc95a7699db043d8aa9aa1a (diff) | |
fix: cdrv: Fix compiler path.
Signed-off-by: Amlal <amlal@nekernel.org>
| -rw-r--r-- | tools/pef-arm64-cdrv.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/pef-arm64-cdrv.cc b/tools/pef-arm64-cdrv.cc index 4cd0a2d..6e2dad1 100644 --- a/tools/pef-arm64-cdrv.cc +++ b/tools/pef-arm64-cdrv.cc @@ -16,7 +16,7 @@ #ifdef __APPLE__ static auto kPath = "/usr/local/lib/libCompilerKit.dylib"; #else -static auto kPath = "/usr/local/lib/libCompilerKit.so"; +static auto kPath = "/usr/lib/libCompilerKit.so"; #endif static auto kSymbol = "CompilerCLangARM64"; |
