From cac158304b7be950b52817177dbcc788b5a75db8 Mon Sep 17 00:00:00 2001 From: pierre Date: Thu, 2 Aug 2018 15:54:13 +0000 Subject: [PATCH] * 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 - --- compiler/systems/t_sunos.pas | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/systems/t_sunos.pas b/compiler/systems/t_sunos.pas index 8102f76230..8b5c89c473 100644 --- a/compiler/systems/t_sunos.pas +++ b/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