From f274e316fe1a2cd6bf2ec34d9bd67f05e364f8d9 Mon Sep 17 00:00:00 2001 From: florian Date: Mon, 22 Aug 2016 10:01:47 +0000 Subject: [PATCH] + search /usr/lib/powerpc-linux-gnu for powerpc startup files git-svn-id: trunk@34365 - --- compiler/systems/t_linux.pas | 3 +++ 1 file changed, 3 insertions(+) diff --git a/compiler/systems/t_linux.pas b/compiler/systems/t_linux.pas index 2641dd5ade..cfbce0afc1 100644 --- a/compiler/systems/t_linux.pas +++ b/compiler/systems/t_linux.pas @@ -157,6 +157,9 @@ begin {$ifdef aarch64} LibrarySearchPath.AddPath(sysrootpath,'/usr/lib/aarch64-linux-gnu',true); {$endif aarch64} +{$ifdef powerpc} + LibrarySearchPath.AddPath(sysrootpath,'/usr/lib/powerpc-linux-gnu',true); +{$endif powerpc} end; end;