mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-23 22:49:35 +02:00
* set syscall base properly for eabi, submitted by Henry Vermaak
git-svn-id: trunk@11179 -
This commit is contained in:
parent
d034dc2512
commit
72dd35a0d5
@ -21,7 +21,11 @@
|
||||
}
|
||||
|
||||
Const
|
||||
syscall_nr_base = $900000;
|
||||
{$ifdef FPC_ABI_EABI}
|
||||
syscall_nr_base = $0;
|
||||
{$else FPC_ABI_EABI}
|
||||
syscall_nr_base = $900000;
|
||||
{$endif FPC_ABI_EABI}
|
||||
|
||||
syscall_nr_exit = syscall_nr_base+ 1;
|
||||
syscall_nr_fork = syscall_nr_base+ 2;
|
||||
|
Loading…
Reference in New Issue
Block a user