Makefile (bf992fa2bc1ad1bb2aeb0bdfadb43f236b9297fd) | Makefile (577eebeae34d340685d8985dfdb7dfe337c511e8) |
---|---|
1ifdef CONFIG_FUNCTION_TRACER 2# Do not profile debug and lowlevel utilities 3CFLAGS_REMOVE_spinlock.o = -pg 4CFLAGS_REMOVE_time.o = -pg 5CFLAGS_REMOVE_irq.o = -pg 6endif 7 8# Make sure early boot has no stackprotector 9nostackp := $(call cc-option, -fno-stack-protector) 10CFLAGS_enlighten.o := $(nostackp) | 1ifdef CONFIG_FUNCTION_TRACER 2# Do not profile debug and lowlevel utilities 3CFLAGS_REMOVE_spinlock.o = -pg 4CFLAGS_REMOVE_time.o = -pg 5CFLAGS_REMOVE_irq.o = -pg 6endif 7 8# Make sure early boot has no stackprotector 9nostackp := $(call cc-option, -fno-stack-protector) 10CFLAGS_enlighten.o := $(nostackp) |
11CFLAGS_mmu.o := $(nostackp) |
|
11 12obj-y := enlighten.o setup.o multicalls.o mmu.o irq.o \ 13 time.o xen-asm.o xen-asm_$(BITS).o \ 14 grant-table.o suspend.o 15 16obj-$(CONFIG_SMP) += smp.o 17obj-$(CONFIG_PARAVIRT_SPINLOCKS)+= spinlock.o 18obj-$(CONFIG_XEN_DEBUG_FS) += debugfs.o | 12 13obj-y := enlighten.o setup.o multicalls.o mmu.o irq.o \ 14 time.o xen-asm.o xen-asm_$(BITS).o \ 15 grant-table.o suspend.o 16 17obj-$(CONFIG_SMP) += smp.o 18obj-$(CONFIG_PARAVIRT_SPINLOCKS)+= spinlock.o 19obj-$(CONFIG_XEN_DEBUG_FS) += debugfs.o |
20 |
|