m 0.1.1

A C free / pure Rust mathematical library ("libm") for `no_std` code
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
FROM ubuntu:16.04
RUN apt-get update
RUN apt-get install -y --no-install-recommends \
    ca-certificates \
    gcc \
    gcc-mipsel-linux-gnu \
    libc6-dev \
    libc6-dev-mipsel-cross \
    qemu-user-static
ENV CARGO_TARGET_MIPSEL_UNKNOWN_LINUX_GNU_LINKER=mipsel-linux-gnu-gcc \
    QEMU_LD_PREFIX=/usr/mipsel-linux-gnu \
    RUST_TEST_THREADS=1