From dee94698c6bae00c04c175d7727c22965ec8b22a Mon Sep 17 00:00:00 2001 From: pierre Date: Sat, 26 Jan 2019 21:02:52 +0000 Subject: [PATCH] ------------------------------------------------------------------------ r40905 | pierre | 2019-01-19 16:06:04 +0000 (Sat, 19 Jan 2019) | 1 line Also add /usr/lib/CPU-linux-gnu to link directory list for mips and mipsel ------------------------------------------------------------------------ --- Merging r40905 into '.': U compiler/systems/t_linux.pas --- Recording mergeinfo for merge of r40905 into '.': U . git-svn-id: branches/fixes_3_2@41077 - --- compiler/systems/t_linux.pas | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/compiler/systems/t_linux.pas b/compiler/systems/t_linux.pas index 0a4af94074..576e06f9c7 100644 --- a/compiler/systems/t_linux.pas +++ b/compiler/systems/t_linux.pas @@ -178,6 +178,12 @@ begin {$ifdef m68k} LibrarySearchPath.AddPath(sysrootpath,'/usr/lib/m68k-linux-gnu',true); {$endif m68k} +{$ifdef mipsel} + LibrarySearchPath.AddPath(sysrootpath,'/usr/lib/mipsel-linux-gnu',true); +{$endif mipsel} +{$ifdef mips} + LibrarySearchPath.AddPath(sysrootpath,'/usr/lib/mips-linux-gnu',true); +{$endif mips} {$ifdef sparc64} LibrarySearchPath.AddPath(sysrootpath,'/usr/lib/sparc64-linux-gnu',true); {$endif sparc64}