Turns out I wasn't building the syscall libraries. Do so.

This commit is contained in:
David Given
2016-08-14 11:23:57 +02:00
parent b549980af2
commit 3df4906d52
27 changed files with 41 additions and 5 deletions

28
plat/linux/libsys/errno.s Normal file
View File

@@ -0,0 +1,28 @@
#
! $Source: /cvsroot/tack/Ack/plat/linux386/libsys/errno.s,v $
! $State: Exp $
! $Revision: 1.1 $
! Declare segments (the order is important).
.sect .text
.sect .rom
.sect .data
.sect .bss
#define D(e) .define e; e
.sect .data
! Define various ACK error numbers. Note that these are *not* ANSI C
! errnos, and are used for different purposes.
D(ERANGE) = 1
D(ESET) = 2
D(EIDIVZ) = 6
D(EHEAP) = 17
D(EILLINS) = 18
D(EODDZ) = 19
D(ECASE) = 20
D(EBADMON) = 25