ecaf45ee5c
- Move them to a pure assembly file. Previously they were in a C file that only consisted of inline assembly. Doing it in pure assembler is much nicer. - Add a frame.i include with FRAME/ENDFRAME macros to easily add frame pointers to assembly functions - Add dwarf2 annotation to them so that the new dwarf2 unwinder doesn't get stuck on them - Random cleanups Includes feedback from Jan Beulich and a UML build fix from Andrew Morton. Cc: jbeulich@novell.com Cc: jdike@addtoit.com Signed-off-by: Andi Kleen <ak@suse.de>
24 lines
656 B
Makefile
24 lines
656 B
Makefile
obj-y = bugs.o checksum.o delay.o fault.o ksyms.o ldt.o ptrace.o \
|
|
ptrace_user.o signal.o sigcontext.o syscalls.o sysrq.o \
|
|
sys_call_table.o tls.o
|
|
|
|
obj-$(CONFIG_MODE_SKAS) += stub.o stub_segv.o
|
|
|
|
subarch-obj-y = lib/bitops.o lib/semaphore.o
|
|
subarch-obj-$(CONFIG_HIGHMEM) += mm/highmem.o
|
|
subarch-obj-$(CONFIG_MODULES) += kernel/module.o
|
|
|
|
USER_OBJS := bugs.o ptrace_user.o sigcontext.o fault.o
|
|
|
|
USER_OBJS += user-offsets.s
|
|
extra-y += user-offsets.s
|
|
|
|
extra-$(CONFIG_MODE_TT) += unmap.o
|
|
|
|
UNPROFILE_OBJS := stub_segv.o
|
|
CFLAGS_stub_segv.o := $(CFLAGS_NO_HARDENING)
|
|
|
|
include arch/um/scripts/Makefile.rules
|
|
|
|
$(obj)/unmap.%: _c_flags = $(call unprofile,$(CFLAGS))
|