Browse Source

m68k: also add Debian's custom library path like on other CPUs

git-svn-id: trunk@36645 -
Károly Balogh 8 years ago
parent
commit
8a22807efa
1 changed files with 3 additions and 0 deletions
  1. 3 0
      compiler/systems/t_linux.pas

+ 3 - 0
compiler/systems/t_linux.pas

@@ -160,6 +160,9 @@ begin
 {$ifdef powerpc}
 {$ifdef powerpc}
       LibrarySearchPath.AddPath(sysrootpath,'/usr/lib/powerpc-linux-gnu',true);
       LibrarySearchPath.AddPath(sysrootpath,'/usr/lib/powerpc-linux-gnu',true);
 {$endif powerpc}
 {$endif powerpc}
+{$ifdef m68k}
+      LibrarySearchPath.AddPath(sysrootpath,'/usr/lib/m68k-linux-gnu',true);
+{$endif m68k}
     end;
     end;
 end;
 end;