diff options
| author | David Gibson | 2019-05-24 07:48:18 +0200 |
|---|---|---|
| committer | David Gibson | 2019-05-29 03:14:19 +0200 |
| commit | c10aaaab0fcfaf7ad68ccbc07a9069d7f6310532 (patch) | |
| tree | 694079f493d7cf31af950853f1942e220a8f579d /tests/tcg | |
| parent | Merge remote-tracking branch 'remotes/stsquad/tags/pull-testing-next-280519-2... (diff) | |
| download | qemu-c10aaaab0fcfaf7ad68ccbc07a9069d7f6310532.tar.gz qemu-c10aaaab0fcfaf7ad68ccbc07a9069d7f6310532.tar.xz qemu-c10aaaab0fcfaf7ad68ccbc07a9069d7f6310532.zip | |
tests: Fix up docker cross builds for ppc64 (BE) targets
We currently have docker cross building targets for powerpc (32-bit, BE)
and ppc64el (64-bit, LE), but not for pcp64 (64-bit, BE). This is an
irritating gap in make check-tcg coverage so correct it.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'tests/tcg')
| -rw-r--r-- | tests/tcg/ppc/Makefile.include | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/tcg/ppc/Makefile.include b/tests/tcg/ppc/Makefile.include index b062c30dd3..ae01fb8fad 100644 --- a/tests/tcg/ppc/Makefile.include +++ b/tests/tcg/ppc/Makefile.include @@ -1,6 +1,9 @@ ifeq ($(TARGET_NAME),ppc) DOCKER_IMAGE=debian-powerpc-cross DOCKER_CROSS_COMPILER=powerpc-linux-gnu-gcc +else ifeq ($(TARGET_NAME),ppc64) +DOCKER_IMAGE=debian-ppc64-cross +DOCKER_CROSS_COMPILER=powerpc64-linux-gnu-gcc else ifeq ($(TARGET_NAME),ppc64le) DOCKER_IMAGE=debian-ppc64el-cross DOCKER_CROSS_COMPILER=powerpc64le-linux-gnu-gcc |
