Added proper cross-compiler reqs
This commit is contained in:
parent
66435b0bb0
commit
0b713dee9c
1 changed files with 12 additions and 0 deletions
|
@ -1,3 +1,15 @@
|
||||||
|
To be able to do a hosted GCC cross-compiler/system-specific cross-compiler
|
||||||
|
===========================================================================
|
||||||
|
/* NB: functions don't *need* to be implemented, just prototyped */
|
||||||
|
sys/types.h: pid_t
|
||||||
|
errno.h: must exist
|
||||||
|
stdlib.h: abort(), atexit(), atoi(), free(), getenv(), malloc()
|
||||||
|
stdio.h: FILE, stderr, size_t, SEEK_SET, fflush(), fclose(), fopen(), fread(),
|
||||||
|
fseek(), ftell(), fwrite(), setbuf(), fprintf(), vfprintf()
|
||||||
|
string.h: size_t, memcpy(), memset(), strcpy(), strlen()
|
||||||
|
time.h: must exist
|
||||||
|
unistd.h: pid_t, fork(), execv(), execve(), execvp()
|
||||||
|
|
||||||
/* NB: This list is ordered. i.e. cat needs stuff from asa to work! */
|
/* NB: This list is ordered. i.e. cat needs stuff from asa to work! */
|
||||||
|
|
||||||
For sh
|
For sh
|
||||||
|
|
Loading…
Reference in a new issue