Go to file
2015-11-22 18:41:14 +01:00
data
doc Reflect and document the current usage 2015-10-15 00:39:53 +02:00
include Add a helper to save preferences 2015-11-22 18:35:00 +01:00
src Do not output empty errors 2015-11-22 18:41:14 +01:00
tests Re-generate the Makefiles 2015-11-22 18:36:05 +01:00
tools Improve the usage screen 2015-10-15 00:34:47 +02:00
.gitignore
config.h Implement new helpers to load preferences 2015-11-22 18:35:00 +01:00
config.sh Re-generate the Makefiles 2015-10-16 01:59:27 +02:00
COPYING
Makefile Re-generate the Makefiles 2015-11-22 18:36:05 +01:00
project.conf Implement new helpers to load preferences 2015-11-22 18:35:00 +01:00
README.md

DeforaOS libSystem

About libSystem

libSystem is the most essential library within DeforaOS, with the aim to become a complete C runtime (thus obsoleting the libc and replacing its API). Regardless of its progress in this regard, libSystem is intended to be portable and work on any system, using any POSIX-compliant runtime provided instead.

Compiling libSystem

With GCC, this should be enough:

$ make

To install libSystem in a dedicated directory, like /path/to/libSystem:

$ make PREFIX="/path/to/libSystem" install

Python bindings

Part of libSystem's API can also be accessed from within the Python programming language. This binding is not compiled or installed by default though. After installing libSystem as documented above, the Python interface can be built and installed as follows:

$ (cd src/python && make install)

Likewise, an alternate installation directory may be specified:

$ (cd src/python && make PREFIX="/path/to/libSystem" install)