Go to file
2014-08-29 21:29:18 +02:00
data Newer script upstream 2014-04-23 18:01:46 +02:00
doc Renamed config(1) to configctl(1) for consistency (and to avoid a conflict on NetBSD) 2014-05-29 20:18:04 +02:00
include Build the python binding as part of the tests 2014-08-29 19:04:13 +02:00
src Build the python binding as part of the tests 2014-08-29 19:04:13 +02:00
tests Code cleanup 2014-08-29 21:29:18 +02:00
tools Renamed config(1) to configctl(1) for consistency (and to avoid a conflict on NetBSD) 2014-05-29 20:18:04 +02:00
config.sh About to release libSystem 0.1.7 2013-12-29 16:30:25 +01:00
COPYING Switched the license to the GPL LGPL version 3 2012-11-03 00:28:23 +01:00
Makefile Build the python binding as part of the tests 2014-08-29 19:04:13 +02:00
project.conf Imported the generic "config" tool (to parse configuration files) 2014-05-09 02:50:01 +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)