mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-05 11:58:33 +02:00
* powerpc64-linux: libc_csu_* are not available anymore in newer glibc,
make them dummy calls, x86_64-linux does the same for years
This commit is contained in:
parent
0b2a58027c
commit
abee68df92
@ -715,6 +715,10 @@ data_start:
|
|||||||
.text
|
.text
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
procedure ini_dummy;
|
||||||
|
begin
|
||||||
|
end;
|
||||||
|
|
||||||
const
|
const
|
||||||
start_addresses: record
|
start_addresses: record
|
||||||
sda_base: pointer;
|
sda_base: pointer;
|
||||||
@ -724,8 +728,10 @@ const
|
|||||||
end
|
end
|
||||||
= (sda_base: nil; {* was _SDA_BASE_ but not in 64-bit ABI }
|
= (sda_base: nil; {* was _SDA_BASE_ but not in 64-bit ABI }
|
||||||
main: @main_stub;
|
main: @main_stub;
|
||||||
libc_csu_init: @__libc_csu_init;
|
{ use dummy, it should not be used anymore by glibc }
|
||||||
libc_csu_fini: @__libc_csu_fini
|
libc_csu_init: @ini_dummy;
|
||||||
|
{ use dummy, it should not be used anymore by glibc }
|
||||||
|
libc_csu_fini: @ini_dummy
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user