Browse Source

* pass debian specific path to c init files to ld for sparc64 as it is done on other targets as well

git-svn-id: trunk@36676 -
florian 8 years ago
parent
commit
13801bebfe
1 changed files with 3 additions and 0 deletions
  1. 3 0
      compiler/systems/t_linux.pas

+ 3 - 0
compiler/systems/t_linux.pas

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