Add $EMUL also for sparc CPU GNU linker call on solaris OS

This commit is contained in:
Pierre Muller 2024-03-25 23:47:11 +01:00
parent 948766a37a
commit c68ddc5360

View File

@ -95,8 +95,11 @@ const
{$endif }
{$ifdef sparc}
const
{ no emulation specification needed, as long as only 32-bit is supported }
gnu_emul = '';
gnu_emul = '-m elf32_sparc_sol2';
{$endif}
{$ifdef sparc64}
const
gnu_emul = '-m elf64_sparc_sol2';
{$endif}
Constructor TLinkersolaris.Create;
@ -136,8 +139,13 @@ const
{$endif }
{$ifdef sparc}
const
gld = 'gld ';
solaris_ld = 'ld ';
gld = 'gld $EMUL';
solaris_ld = 'ld -m32';
{$endif}
{$ifdef sparc64}
const
gld = 'gld $EMUL';
solaris_ld = 'ld -m64';
{$endif}
begin
Glibc2:=false;