mirror of
https://github.com/librespot-org/librespot.git
synced 2025-10-03 09:49:31 +02:00
Add mipsel as a cross-compilation target.
This commit is contained in:
parent
6a0657fec6
commit
6daedde0e9
4 changed files with 101 additions and 93 deletions
|
@ -17,19 +17,22 @@ FROM debian:stretch
|
|||
|
||||
RUN dpkg --add-architecture armhf
|
||||
RUN dpkg --add-architecture armel
|
||||
RUN dpkg --add-architecture mipsel
|
||||
RUN apt-get update
|
||||
|
||||
RUN apt-get install -y curl git build-essential crossbuild-essential-armhf crossbuild-essential-armel
|
||||
RUN apt-get install -y libasound2-dev libasound2-dev:armhf libasound2-dev:armel
|
||||
RUN apt-get install -y curl git build-essential crossbuild-essential-armhf crossbuild-essential-armel crossbuild-essential-mipsel
|
||||
RUN apt-get install -y libasound2-dev libasound2-dev:armhf libasound2-dev:armel libasound2-dev:mipsel
|
||||
|
||||
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y
|
||||
ENV PATH="/root/.cargo/bin/:${PATH}"
|
||||
RUN rustup target add arm-unknown-linux-gnueabi
|
||||
RUN rustup target add arm-unknown-linux-gnueabihf
|
||||
RUN rustup target add mipsel-unknown-linux-gnu
|
||||
|
||||
RUN mkdir /.cargo && \
|
||||
echo '[target.arm-unknown-linux-gnueabihf]\nlinker = "arm-linux-gnueabihf-gcc"' > /.cargo/config && \
|
||||
echo '[target.arm-unknown-linux-gnueabi]\nlinker = "arm-linux-gnueabi-gcc"' >> /.cargo/config
|
||||
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
|
||||
|
||||
RUN mkdir /build
|
||||
ENV CARGO_TARGET_DIR /build
|
||||
|
|
|
@ -4,3 +4,4 @@ set -eux
|
|||
cargo build --release --no-default-features --features alsa-backend
|
||||
cargo build --release --target arm-unknown-linux-gnueabihf --no-default-features --features alsa-backend
|
||||
cargo build --release --target arm-unknown-linux-gnueabi --no-default-features --features alsa-backend
|
||||
cargo build --release --target mipsel-unknown-linux-gnu --no-default-features --features alsa-backend
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue