mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 23:33:54 -06:00
tests/tcg: enable building for m68k
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>
This commit is contained in:
parent
3ae8a1000b
commit
21d71c8c41
4 changed files with 22 additions and 0 deletions
|
@ -72,6 +72,7 @@ docker-image-debian-sid: NOCACHE=1
|
||||||
|
|
||||||
docker-image-debian-alpha-cross: docker-image-debian-sid
|
docker-image-debian-alpha-cross: docker-image-debian-sid
|
||||||
docker-image-debian-hppa-cross: docker-image-debian-sid
|
docker-image-debian-hppa-cross: docker-image-debian-sid
|
||||||
|
docker-image-debian-m68k-cross: docker-image-debian-sid
|
||||||
docker-image-travis: NOUSER=1
|
docker-image-travis: NOUSER=1
|
||||||
|
|
||||||
# Specialist build images, sometimes very limited tools
|
# Specialist build images, sometimes very limited tools
|
||||||
|
|
12
tests/docker/dockerfiles/debian-m68k-cross.docker
Normal file
12
tests/docker/dockerfiles/debian-m68k-cross.docker
Normal file
|
@ -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
|
2
tests/tcg/m68k/Makefile.include
Normal file
2
tests/tcg/m68k/Makefile.include
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
DOCKER_IMAGE=debian-m68k-cross
|
||||||
|
DOCKER_CROSS_COMPILER=m68k-linux-gnu-gcc
|
7
tests/tcg/m68k/Makefile.target
Normal file
7
tests/tcg/m68k/Makefile.target
Normal file
|
@ -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…
Add table
Add a link
Reference in a new issue