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