mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-27 12:23:53 -06:00

Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
11 lines
334 B
Text
11 lines
334 B
Text
include $(BUILD_DIR)/tests/tcg/hppa-linux-user/config-target.mak
|
|
|
|
SUBDIR = $(SRC_PATH)/linux-user/hppa
|
|
VPATH += $(SUBDIR)
|
|
|
|
all: $(SUBDIR)/vdso.so
|
|
|
|
$(SUBDIR)/vdso.so: vdso.S vdso.ld vdso-asmoffset.h
|
|
$(CC) -o $@ -nostdlib -shared -Wl,-h,linux-vdso32.so.1 \
|
|
-Wl,--build-id=sha1 -Wl,--hash-style=both \
|
|
-Wl,-T,$(SUBDIR)/vdso.ld $<
|