]> git.ipfire.org Git - thirdparty/qemu.git/blame - tests/tcg/mips/Makefile.include
tests/tcg: cleanup Makefile inclusions
[thirdparty/qemu.git] / tests / tcg / mips / Makefile.include
CommitLineData
7086ffbb
AB
1#
2# Makefile.include for all MIPs targets
3#
4# As Debian doesn't support mip64 in big endian mode the only way to
5# build BE is to pass a working cross compiler to ./configure
6#
7
8ifeq ($(TARGET_NAME),mips64el)
9DOCKER_IMAGE=debian-mips64el-cross
10DOCKER_CROSS_COMPILER=mips64el-linux-gnuabi64-gcc
33b2c4b5
AB
11else ifeq ($(TARGET_NAME),mips64)
12DOCKER_IMAGE=debian-mips64-cross
13DOCKER_CROSS_COMPILER=mips64-linux-gnuabi64-gcc
7086ffbb
AB
14else ifeq ($(TARGET_NAME),mipsel)
15DOCKER_IMAGE=debian-mipsel-cross
16DOCKER_CROSS_COMPILER=mipsel-linux-gnu-gcc
17else ifeq ($(TARGET_NAME),mips)
18DOCKER_IMAGE=debian-mips-cross
19DOCKER_CROSS_COMPILER=mips-linux-gnu-gcc
20endif