GitHunt

Overview

mmlib is an Operating System abstraction layer.

It provides an API for application developer, so that they can write portable
code using relatively advanced OS features without having to care about system
specifics.

The reference design in mind in its conception is POSIX, meaning that if
some posix functionality is not available for given platform, mmlib will
implement that same functionality itself.

Dependencies

Tests

Running the tests require the check framework.

Documentation

Generating the documentation requires sphinx and
linuxdoc

Install

mmlib supports meson and autotools build systems.

# autotools
mkdir build && cd build
../autogen.sh
../configure --prefix=<install-dir>
make
make check # optional
make install

# meson
meson build --prefix=<install-dir>
cd build
ninja
ninja test # optional
ninja install

License

mmlib is free software under the terms of the Apache license 2.0.
See LICENSE file.

Authors and Contributors

mmlib has been open-sourced by MindMaze and is
maintained by Nicolas Bourdaud nicolas.bourdaud@gmail.com

Languages

C95.4%Meson1.9%M41.3%Makefile0.8%Shell0.5%Python0.0%

Contributors

Apache License 2.0
Created December 6, 2019
Updated September 22, 2025
mmlabs-mindmaze/mmlib | GitHunt