libc 0.2.10

A library for types and bindings to native C functions often found in libc or other common platform libraries.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
FROM ubuntu:15.04

RUN apt-get update
RUN apt-get install -y binutils git g++ make qemu

WORKDIR /build
RUN git clone --recursive http://repo.rumpkernel.org/rumprun
WORKDIR /build/rumprun
RUN CC=cc ./build-rr.sh hw

ENV PATH=$PATH:/build/rumprun/rumprun/bin
WORKDIR /root