~pmdj/ubuntu/trusty/qemu/2.9+applesmc+fadtv3

« back to all changes in this revision

Viewing changes to tests/docker/dockerfiles/debian-armhf-cross.docker

  • Committer: Phil Dennis-Jordan
  • Date: 2017-07-21 08:03:43 UTC
  • mfrom: (1.1.1)
  • Revision ID: phil@philjordan.eu-20170721080343-2yr2vdj7713czahv
New upstream release 2.9.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# Docker armhf cross-compiler target
 
3
#
 
4
# This docker target builds on the base debian image.
 
5
#
 
6
FROM qemu:debian
 
7
 
 
8
# Add the foreign architecture we want and install dependencies
 
9
RUN dpkg --add-architecture armhf
 
10
RUN apt update
 
11
RUN apt install -yy crossbuild-essential-armhf
 
12
RUN apt-get build-dep -yy -a armhf qemu
 
13
 
 
14
# Specify the cross prefix for this image (see tests/docker/common.rc)
 
15
ENV QEMU_CONFIGURE_OPTS --cross-prefix=arm-linux-gnueabihf-