Browse Source

* add aarch64 multi-arch library directory (patch by Edmund Grimley Evans)

git-svn-id: trunk@31981 -
Jonas Maebe 9 years ago
parent
commit
5cb2d10c9a
1 changed files with 3 additions and 0 deletions
  1. 3 0
      compiler/systems/t_linux.pas

+ 3 - 0
compiler/systems/t_linux.pas

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