mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 18:47:54 +02:00
Add $EMUL also for sparc CPU GNU linker call on solaris OS
This commit is contained in:
parent
948766a37a
commit
c68ddc5360
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user