Go to file
2014-11-19 22:36:37 +01:00
data Re-generated the Makefiles (with partial support for OBJDIR) 2014-11-12 02:28:52 +01:00
doc Newer version of the script upstream 2014-11-12 21:21:57 +01:00
include Re-generated the Makefiles (with partial support for OBJDIR) 2014-11-12 02:28:52 +01:00
src Re-indented the Python code 2014-11-16 01:42:07 +01:00
tests Added some entries to .gitignore 2014-11-15 18:49:04 +01:00
tools Added some more entries to .gitignore 2014-11-15 18:49:53 +01:00
config.sh About to release libSystem 0.2.0 2014-09-14 19:53:45 +02:00
COPYING Switched the license to the GPL LGPL version 3 2012-11-03 00:28:23 +01:00
Makefile Re-generated the Makefile 2014-11-19 22:36:37 +01:00
project.conf About to release libSystem 0.2.0 2014-09-14 19:53:45 +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)