libc 0.2.29

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
FROM ubuntu:17.10
RUN apt-get update
RUN apt-get install -y --no-install-recommends \
  gcc libc6-dev ca-certificates \
  gcc-aarch64-linux-gnu libc6-dev-arm64-cross qemu-user
ENV CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER=aarch64-linux-gnu-gcc \
    PATH=$PATH:/rust/bin