Add docs to README.md

This commit is contained in:
Alex Kotov 2021-12-19 08:14:30 +05:00
parent 324891b78b
commit 1027c5c739
Signed by: kotovalexarian
GPG Key ID: 553C0EBBEB5D5F08
1 changed files with 8 additions and 2 deletions

View File

@ -78,9 +78,15 @@ are some non-default options:
application (kernel). However it prevents crashes because of NULL pointer
dereference in other cases.
* `--with-arch` - includes architecture-specific code (except assembly). May be
useful for testing.
useful for testing. You can also separately enable or disable components:
* `--with-arch-i386`
* `--with-arch-x86-64`
* `--with-libc` - provides the replacement for some standard C functions. Useful
in freestanding environment, where no libc is present.
in freestanding environment, where no libc is present. You can also separately
enable or disable components:
* `--with-libc-memset`
* `--with-libc-strcpy`
* `--with-libc-strlen`
### Installation