Browse Source
As before, using Debian SID compilers. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Tested-by: Philippe Mathieu-Daudé <f4bug@amsat.org>pull/73/head
4 changed files with 22 additions and 0 deletions
@ -0,0 +1,12 @@ |
|||||
|
# |
||||
|
# Docker cross-compiler target |
||||
|
# |
||||
|
# This docker target builds on the debian sid base image which |
||||
|
# contains cross compilers for Debian "ports" targets. |
||||
|
# |
||||
|
FROM qemu:debian-sid |
||||
|
|
||||
|
RUN DEBIAN_FRONTEND=noninteractive eatmydata \ |
||||
|
apt-get install -y --no-install-recommends \ |
||||
|
gcc-m68k-linux-gnu \ |
||||
|
libc6-dev-m68k-cross |
||||
@ -0,0 +1,2 @@ |
|||||
|
DOCKER_IMAGE=debian-m68k-cross |
||||
|
DOCKER_CROSS_COMPILER=m68k-linux-gnu-gcc |
||||
@ -0,0 +1,7 @@ |
|||||
|
# -*- Mode: makefile -*-
|
||||
|
#
|
||||
|
# m68k specific tweaks - specifically masking out broken tests
|
||||
|
#
|
||||
|
|
||||
|
# On m68k Linux supports 4k and 8k pages (but 8k is currently broken)
|
||||
|
EXTRA_RUNS+=run-test-mmap-4096 # run-test-mmap-8192 |
||||
Loading…
Reference in new issue