| # -*- Mode: makefile -*- |
| # |
| # ppc64le specific tweaks |
| |
| VPATH += $(SRC_PATH)/tests/tcg/ppc64le |
| |
| ifneq ($(DOCKER_IMAGE)$(CROSS_CC_HAS_POWER8_VECTOR),) |
| PPC64LE_TESTS=bcdsub |
| endif |
| bcdsub: CFLAGS += -mpower8-vector |
| |
| PPC64LE_TESTS += byte_reverse |
| ifneq ($(DOCKER_IMAGE)$(CROSS_CC_HAS_POWER10),) |
| run-byte_reverse: QEMU_OPTS+=-cpu POWER10 |
| run-plugin-byte_reverse-with-%: QEMU_OPTS+=-cpu POWER10 |
| else |
| byte_reverse: |
| $(call skip-test, "BUILD of $@", "missing compiler support") |
| run-byte_reverse: |
| $(call skip-test, "RUN of byte_reverse", "not built") |
| run-plugin-byte_reverse-with-%: |
| $(call skip-test, "RUN of byte_reverse ($*)", "not built") |
| endif |
| |
| TESTS += $(PPC64LE_TESTS) |