io: store reference to thread information in the QIOTask struct
[qemu/ar7.git] / tests / tcg / mips / Makefile.include
blob4a14fc078d2b90d3c6a75423af303e8826395b9d
2 # Makefile.include for all MIPs targets
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
8 ifeq ($(TARGET_NAME),mips64el)
9 DOCKER_IMAGE=debian-mips64el-cross
10 DOCKER_CROSS_COMPILER=mips64el-linux-gnuabi64-gcc
11 else ifeq ($(TARGET_NAME),mips64)
12 DOCKER_IMAGE=debian-mips64-cross
13 DOCKER_CROSS_COMPILER=mips64-linux-gnuabi64-gcc
14 else ifeq ($(TARGET_NAME),mipsel)
15 DOCKER_IMAGE=debian-mipsel-cross
16 DOCKER_CROSS_COMPILER=mipsel-linux-gnu-gcc
17 else ifeq ($(TARGET_NAME),mips)
18 DOCKER_IMAGE=debian-mips-cross
19 DOCKER_CROSS_COMPILER=mips-linux-gnu-gcc
20 endif