2017-02-16 21:38:48 +00:00
|
|
|
# Cross compilation environment for librespot
|
|
|
|
# Build the docker image from the root of the project with the following command :
|
|
|
|
# $ docker build -t librespot-cross -f contrib/Dockerfile .
|
|
|
|
#
|
2018-03-01 16:58:28 +00:00
|
|
|
# The resulting image can be used to build librespot for linux x86_64, armhf(with support for armv6hf), armel, mipsel, aarch64
|
2017-02-16 21:38:48 +00:00
|
|
|
# $ docker run -v /tmp/librespot-build:/build librespot-cross
|
|
|
|
#
|
|
|
|
# The compiled binaries will be located in /tmp/librespot-build
|
|
|
|
#
|
|
|
|
# If only one architecture is desired, cargo can be invoked directly with the appropriate options :
|
2017-02-22 15:02:36 +00:00
|
|
|
# $ docker run -v /tmp/librespot-build:/build librespot-cross cargo build --release --no-default-features --features "alsa-backend"
|
|
|
|
# $ docker run -v /tmp/librespot-build:/build librespot-cross cargo build --release --target arm-unknown-linux-gnueabihf --no-default-features --features "alsa-backend"
|
|
|
|
# $ docker run -v /tmp/librespot-build:/build librespot-cross cargo build --release --target arm-unknown-linux-gnueabi --no-default-features --features "alsa-backend"
|
2018-03-01 16:58:28 +00:00
|
|
|
# $ docker run -v /tmp/librespot-build:/build librespot-cross contrib/docker-build-pi-armv6hf.sh
|
2017-02-16 21:38:48 +00:00
|
|
|
|
|
|
|
FROM debian:stretch
|
|
|
|
|
2017-06-08 11:31:06 +00:00
|
|
|
RUN dpkg --add-architecture arm64
|
2017-02-16 21:38:48 +00:00
|
|
|
RUN dpkg --add-architecture armhf
|
|
|
|
RUN dpkg --add-architecture armel
|
2017-03-05 10:03:56 +00:00
|
|
|
RUN dpkg --add-architecture mipsel
|
2017-02-16 21:38:48 +00:00
|
|
|
RUN apt-get update
|
|
|
|
|
2017-06-08 11:31:06 +00:00
|
|
|
RUN apt-get install -y curl git build-essential crossbuild-essential-arm64 crossbuild-essential-armel crossbuild-essential-armhf crossbuild-essential-mipsel
|
|
|
|
RUN apt-get install -y libasound2-dev libasound2-dev:arm64 libasound2-dev:armel libasound2-dev:armhf libasound2-dev:mipsel
|
2017-02-16 21:38:48 +00:00
|
|
|
|
|
|
|
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y
|
|
|
|
ENV PATH="/root/.cargo/bin/:${PATH}"
|
2017-06-08 11:31:06 +00:00
|
|
|
RUN rustup target add aarch64-unknown-linux-gnu
|
2017-02-16 21:38:48 +00:00
|
|
|
RUN rustup target add arm-unknown-linux-gnueabi
|
|
|
|
RUN rustup target add arm-unknown-linux-gnueabihf
|
2017-03-05 10:03:56 +00:00
|
|
|
RUN rustup target add mipsel-unknown-linux-gnu
|
2017-02-16 21:38:48 +00:00
|
|
|
|
2017-02-17 10:30:23 +00:00
|
|
|
RUN mkdir /.cargo && \
|
2017-06-08 11:31:06 +00:00
|
|
|
echo '[target.aarch64-unknown-linux-gnu]\nlinker = "aarch64-linux-gnu-gcc"' > /.cargo/config && \
|
|
|
|
echo '[target.arm-unknown-linux-gnueabihf]\nlinker = "arm-linux-gnueabihf-gcc"' >> /.cargo/config && \
|
2017-03-05 10:03:56 +00:00
|
|
|
echo '[target.arm-unknown-linux-gnueabi]\nlinker = "arm-linux-gnueabi-gcc"' >> /.cargo/config && \
|
|
|
|
echo '[target.mipsel-unknown-linux-gnu]\nlinker = "mipsel-linux-gnu-gcc"' >> /.cargo/config
|
2017-02-16 21:38:48 +00:00
|
|
|
|
2018-03-01 16:58:28 +00:00
|
|
|
RUN mkdir /build && \
|
|
|
|
mkdir /pi-tools && \
|
|
|
|
curl -L https://github.com/raspberrypi/tools/archive/648a6eeb1e3c2b40af4eb34d88941ee0edeb3e9a.tar.gz | tar xz --strip-components 1 -C /pi-tools
|
|
|
|
|
2017-02-16 21:38:48 +00:00
|
|
|
ENV CARGO_TARGET_DIR /build
|
2017-02-17 10:30:23 +00:00
|
|
|
ENV CARGO_HOME /build/cache
|
2017-02-16 21:38:48 +00:00
|
|
|
|
|
|
|
ADD . /src
|
|
|
|
WORKDIR /src
|
|
|
|
CMD ["/src/contrib/docker-build.sh"]
|