Commit 94807751 authored by Laurent Dufour's avatar Laurent Dufour Committed by Pavel Emelyanov

ppc64: Fix pie Makefile

When building without the vDSO support on PowerPC (which is not a good
idea), the build is failing because few files are not included in the
build.

This fix moves those files inclusion outside of the vDSO directive.

CC: Pavel Emelyanov <xemul@parallels.com>
Signed-off-by: 's avatarLaurent Dufour <ldufour@linux.vnet.ibm.com>
Acked-by: 's avatarCyrill Gorcunov <gorcunov@gmail.com>
Signed-off-by: 's avatarPavel Emelyanov <xemul@parallels.com>
parent 7f44f1db
......@@ -12,11 +12,14 @@ asm-e += $(ARCH_DIR)/intraprocedure.o
endif
ifeq ($(SRCARCH), ppc64)
asm-e += $(ARCH_DIR)/vdso-trampoline.o
endif
endif
ifeq ($(SRCARCH), ppc64)
asm-e += $(ARCH_DIR)/memcpy_power7.o
asm-e += $(ARCH_DIR)/memcmp_64.o
asm-e += $(ARCH_DIR)/misc.o
endif
endif
parasite-obj-y += parasite.o
parasite-asm-e += $(ARCH_DIR)/parasite-head.o
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment