summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpierre <pierre@3ad0048d-3df7-0310-abae-a5850022a9f2>2018-08-02 15:54:13 +0000
committerpierre <pierre@3ad0048d-3df7-0310-abae-a5850022a9f2>2018-08-02 15:54:13 +0000
commit5d465ec8433798942617068db1ebeef2e42b68a0 (patch)
treeab5506a9cfd3510fd583f950fa957bf23b354af5
parentf0edbe5ca05431917073bb0dbdb88c2626fbfb67 (diff)
downloadfpc-5d465ec8433798942617068db1ebeef2e42b68a0.tar.gz
* 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: https://svn.freepascal.org/svn/fpc/branches/fixes_3_0@39552 3ad0048d-3df7-0310-abae-a5850022a9f2
-rw-r--r--compiler/systems/t_sunos.pas4
1 files 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