diff options
author | Alex Bennée <alex.bennee@linaro.org> | 2018-04-23 13:54:09 +0100 |
---|---|---|
committer | Alex Bennée <alex.bennee@linaro.org> | 2018-06-20 20:22:34 +0100 |
commit | 409c1c9cbd9a6715d5f5663a8b3404ea193d0137 (patch) | |
tree | 893d8ceb38f3938a1bd2108c97861dba31ca6f26 /tests/tcg | |
parent | 1e2107092dda50f111a7886d968877a97b71465a (diff) | |
download | qemu-409c1c9cbd9a6715d5f5663a8b3404ea193d0137.zip qemu-409c1c9cbd9a6715d5f5663a8b3404ea193d0137.tar.gz qemu-409c1c9cbd9a6715d5f5663a8b3404ea193d0137.tar.bz2 |
tests/tcg: enable building for Alpha
We can't use our normal Debian based compilers as Alpha isn't an
officially supported architecture. However it is available as a port
and fortunately cross compilers for all these targets are included in
Debian Sid, the perpetual rolling/unstable/testing version of Debian.
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>
Diffstat (limited to 'tests/tcg')
-rw-r--r-- | tests/tcg/alpha/Makefile.include | 2 | ||||
-rw-r--r-- | tests/tcg/alpha/Makefile.target | 6 |
2 files changed, 8 insertions, 0 deletions
diff --git a/tests/tcg/alpha/Makefile.include b/tests/tcg/alpha/Makefile.include new file mode 100644 index 0000000..c7dc48e --- /dev/null +++ b/tests/tcg/alpha/Makefile.include @@ -0,0 +1,2 @@ +DOCKER_IMAGE=debian-alpha-cross +DOCKER_CROSS_COMPILER=alpha-linux-gnu-gcc diff --git a/tests/tcg/alpha/Makefile.target b/tests/tcg/alpha/Makefile.target new file mode 100644 index 0000000..bedf1b6 --- /dev/null +++ b/tests/tcg/alpha/Makefile.target @@ -0,0 +1,6 @@ +# -*- Mode: makefile -*- +# +# Alpha specific tweaks + +# On Alpha Linux only supports 8k pages +EXTRA_RUNS+=run-test-mmap-8192 |