浏览代码

* fix default dynamic linker location for 64 bit targets in linux

git-svn-id: trunk@8707 -
micha 18 年之前
父节点
当前提交
c3e587355d
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      compiler/systems/t_linux.pas

+ 2 - 2
compiler/systems/t_linux.pas

@@ -264,7 +264,7 @@ begin
 {$endif}
 
 {$ifdef x86_64}
-     defdynlinker:='/lib/ld-linux-x86-64.so.2';
+     defdynlinker:='/lib64/ld-linux-x86-64.so.2';
 {$endif x86_64}
 
 {$ifdef sparc}
@@ -276,7 +276,7 @@ begin
 {$endif powerpc}
 
 {$ifdef powerpc64}
-     defdynlinker:='/lib/ld64.so.1';
+     defdynlinker:='/lib64/ld64.so.1';
 {$endif powerpc64}
 
 {$ifdef arm}