-
Notifications
You must be signed in to change notification settings - Fork 379
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
+= armv5te-unknown-linux-gnueabi target
- Loading branch information
Andreas Schmidt
committed
Mar 17, 2020
1 parent
47f325a
commit 4730d72
Showing
3 changed files
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
FROM ubuntu:18.04 | ||
|
||
COPY common.sh / | ||
RUN /common.sh | ||
|
||
COPY cmake.sh / | ||
RUN /cmake.sh | ||
|
||
COPY xargo.sh / | ||
RUN /xargo.sh | ||
|
||
COPY qemu.sh / | ||
RUN apt-get install -y --no-install-recommends \ | ||
g++-arm-linux-gnueabi \ | ||
crossbuild-essential-armel \ | ||
libc6-dev-armel-cross && \ | ||
/qemu.sh arm | ||
|
||
ENV CARGO_TARGET_ARMV5TE_UNKNOWN_LINUX_GNUEABI_LINKER=arm-linux-gnueabi-gcc \ | ||
CARGO_TARGET_ARMV5TE_UNKNOWN_LINUX_GNUEABI_RUNNER=qemu-arm \ | ||
CC_armv5te_unknown_linux_gnueabi=arm-linux-gnueabi-gcc \ | ||
CXX_armv5te_unknown_linux_gnueabi=arm-linux-gnueabi-g++ \ | ||
QEMU_LD_PREFIX=/usr/arm-linux-gnueabi \ | ||
RUST_TEST_THREADS=1 |