ソースを参照

Add /usr/lib64 and /lib64 to default library path list for sparc linux

(cherry picked from commit aca84a812800fce7ef0377b43501a8efae755a13)
Pierre Muller 2 年 前
コミット
336d531687
1 ファイル変更3 行追加0 行削除
  1. 3 0
      compiler/systems/t_linux.pas

+ 3 - 0
compiler/systems/t_linux.pas

@@ -186,6 +186,9 @@ begin
 {$endif mips}
 {$ifdef sparc64}
       LibrarySearchPath.AddLibraryPath(sysrootpath,'=/usr/lib/sparc64-linux-gnu',true);
+      LibrarySearchPath.AddLibraryPath(sysrootpath,'=/lib/sparc64-linux-gnu',true);
+      LibrarySearchPath.AddLibraryPath(sysrootpath,'=/usr/lib64',true);
+      LibrarySearchPath.AddLibraryPath(sysrootpath,'=/lib64',true);
 {$endif sparc64}
     end;
 end;