Skip to content

Add target for Little-endian ARM Cortex-R4F/R5F MCUs #53663

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 3 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
armv7r-none-eabi: use gcc-arm-none-eabi and cc crate v1.0.21
- use gcc-arm-none-eabi from Ubuntu repository
- remove hard-coded CC flags (require cc-rs v1.0.21)
  • Loading branch information
paoloteti committed Aug 24, 2018
commit e1bc122b3afdab5941c68f3e65a7b40f134d33c8
11 changes: 2 additions & 9 deletions src/ci/docker/disabled/dist-armv7r-none-eabihf/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,15 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
xz-utils \
bzip2 \
libssl-dev \
pkg-config
pkg-config \
gcc-arm-none-eabi


COPY scripts/sccache.sh /scripts/
RUN sh /scripts/sccache.sh

# GNU Arm Embedded Toolchain 7-2018-q2-update (June 27,2018)
ENV BASE_URL=https://developer.arm.com/-/media/Files/downloads/gnu-rm/
RUN curl -L $BASE_URL/7-2018q2/gcc-arm-none-eabi-7-2018-q2-update-linux.tar.bz2 | tar -xj
ENV PATH=$PATH:/gcc-arm-none-eabi-7-2018-q2-update/bin

ENV TARGET=armv7r-none-eabihf

ENV CC_armv7r_none_eabihf=arm-none-eabi-gcc \
CFLAGS_armv7r_none_eabihf="-march=armv7-r"

ENV RUST_CONFIGURE_ARGS --disable-docs

ENV SCRIPT python2.7 ../x.py dist --target $TARGET