From 1027c5c7396671c4f43c62283d65769a527eed46 Mon Sep 17 00:00:00 2001 From: Alex Kotov Date: Sun, 19 Dec 2021 08:14:30 +0500 Subject: [PATCH] Add docs to README.md --- README.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b62f3b3..454419b 100644 --- a/README.md +++ b/README.md @@ -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