From 4f7c2890299bf18f9ae0c274f1eed967005f2799 Mon Sep 17 00:00:00 2001 From: Pierre Muller Date: Sat, 16 Sep 2023 21:11:46 +0000 Subject: [PATCH] Change loongarch64 default dynamic linker directory according to gcc --- compiler/systems/t_linux.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/systems/t_linux.pas b/compiler/systems/t_linux.pas index a7de88882e..6eba06465c 100644 --- a/compiler/systems/t_linux.pas +++ b/compiler/systems/t_linux.pas @@ -288,7 +288,7 @@ const defdynlinker='/lib/ld-linux-aarch64.so.1'; {$endif xtensa} {$ifdef loongarch64} - const defdynlinker='/usr/lib64/ld-linux-loongarch-lp64d.so.1'; + const defdynlinker='/lib64/ld-linux-loongarch-lp64d.so.1'; {$endif loongarch64} procedure SetupDynlinker(out DynamicLinker:string;out libctype:TLibcType);