Go to file
2015-05-10 23:54:13 +02:00
data .cvsignore files are no longer necessary 2014-12-27 18:13:21 +01:00
doc Updated upstream 2015-03-03 20:46:39 +01:00
include Update a couple copyright notices 2015-04-20 23:46:11 +02:00
src Update the copyright notice 2015-05-10 23:45:13 +02:00
tests Use PROGNAME for the tests script as well 2015-05-10 23:54:13 +02:00
tools Update the copyright notice 2015-04-09 23:50:02 +02:00
config.sh Prepare to release version 0.2.1 2015-05-10 23:46:46 +02:00
COPYING Switched the license to the GPL LGPL version 3 2012-11-03 00:28:23 +01:00
Makefile Prepare to release version 0.2.1 2015-05-10 23:46:46 +02:00
project.conf Prepare to release version 0.2.1 2015-05-10 23:46:46 +02:00
README.md Documenting the Python bindings 2013-01-26 01:32:52 +01:00

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)