Browse Source

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

git-svn-id: trunk@36645 -
Károly Balogh 8 năm trước cách đây
mục cha
commit
8a22807efa
1 tập tin đã thay đổi với 3 bổ sung0 xóa
  1. 3 0
      compiler/systems/t_linux.pas

+ 3 - 0
compiler/systems/t_linux.pas

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