0dc077212f
Now we have a common semihosting console interface use that for our string output. However ARM is currently unique in also supporting semihosting for linux-user so we need to replicate the API in linux-user. If other architectures gain this support we can move the file later. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
12 lines
403 B
Makefile
12 lines
403 B
Makefile
obj-y = main.o syscall.o strace.o mmap.o signal.o \
|
|
elfload.o linuxload.o uaccess.o uname.o \
|
|
safe-syscall.o $(TARGET_ABI_DIR)/signal.o \
|
|
$(TARGET_ABI_DIR)/cpu_loop.o exit.o fd-trans.o
|
|
|
|
obj-$(TARGET_HAS_BFLT) += flatload.o
|
|
obj-$(TARGET_I386) += vm86.o
|
|
obj-$(TARGET_ARM) += arm/nwfpe/
|
|
obj-$(TARGET_ARM) += arm/semihost.o
|
|
obj-$(TARGET_AARCH64) += arm/semihost.o
|
|
obj-$(TARGET_M68K) += m68k-sim.o
|