소스 검색

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