4f2cbcfb4d
These tests did use their own crt.o stub however that is a little stone age so we drop crt.S and just statically link to the cross compilers libraries. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Tested-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
19 lines
397 B
Makefile
19 lines
397 B
Makefile
# -*- Mode: makefile -*-
|
|
#
|
|
# Alpha specific tweaks
|
|
|
|
ALPHA_SRC=$(SRC_PATH)/tests/tcg/alpha
|
|
VPATH+=$(ALPHA_SRC)
|
|
|
|
ALPHA_TESTS=hello-alpha test-cond test-cmov test-ovf
|
|
TESTS+=$(ALPHA_TESTS)
|
|
|
|
test-cmov: EXTRA_CFLAGS=-DTEST_CMOV
|
|
test-cmov: test-cond.c
|
|
$(CC) $(CFLAGS) $(EXTRA_CFLAGS) $< -o $@ $(LDFLAGS)
|
|
|
|
run-test-cmov: test-cmov
|
|
|
|
# On Alpha Linux only supports 8k pages
|
|
EXTRA_RUNS+=run-test-mmap-8192
|