Parcourir la source

* Merge commit 39541 to fixes branch, to allow testing of fixes

------------------------------------------------------------------------
r39541 | pierre | 2018-08-01 08:44:26 +0200 (Wed, 01 Aug 2018) | 1 line

 Remove abolute path for native linker, ld is in directory /usr/ccs/bin in  Oracle Solaris 10 8/11

git-svn-id: branches/fixes_3_0@39552 -
pierre il y a 7 ans
Parent
commit
cac158304b
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      compiler/systems/t_sunos.pas

+ 2 - 2
compiler/systems/t_sunos.pas

@@ -157,12 +157,12 @@ procedure TLinkersolaris.SetDefaultInfo;
 {$ifdef x86_64}
 const
   gld = 'gld $EMUL ';
-  solaris_ld = '/usr/bin/ld -64 ';
+  solaris_ld = 'ld -64 ';
 {$endif}
 {$ifdef i386}
 const
   gld = 'gld $EMUL';
-  solaris_ld = '/usr/bin/ld ';
+  solaris_ld = 'ld ';
 {$endif }
 {$ifdef sparc}
 const