* 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 -
This commit is contained in:
pierre 2018-08-02 15:54:13 +00:00
parent 03707fc453
commit cac158304b

View File

@ -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