Makefile (a0efa2f362a69e47b9d8b48f770ef3a0249a7911) | Makefile (4971266e1595f76be3f844c834c1f9357a97dbde) |
---|---|
1# SPDX-License-Identifier: GPL-2.0 2obj-y := core.o 3ifneq ($(CONFIG_BPF_JIT_ALWAYS_ON),y) 4# ___bpf_prog_run() needs GCSE disabled on x86; see 3193c0836f203 for details 5cflags-nogcse-$(CONFIG_X86)$(CONFIG_CC_IS_GCC) := -fno-gcse 6endif 7CFLAGS_core.o += -Wno-override-init $(cflags-nogcse-yy) 8 --- 38 unchanged lines hidden (view full) --- 47ifneq ($(CONFIG_CRYPTO),) 48obj-$(CONFIG_BPF_SYSCALL) += crypto.o 49endif 50obj-$(CONFIG_BPF_PRELOAD) += preload/ 51 52obj-$(CONFIG_BPF_SYSCALL) += relo_core.o 53obj-$(CONFIG_BPF_SYSCALL) += btf_iter.o 54obj-$(CONFIG_BPF_SYSCALL) += btf_relocate.o | 1# SPDX-License-Identifier: GPL-2.0 2obj-y := core.o 3ifneq ($(CONFIG_BPF_JIT_ALWAYS_ON),y) 4# ___bpf_prog_run() needs GCSE disabled on x86; see 3193c0836f203 for details 5cflags-nogcse-$(CONFIG_X86)$(CONFIG_CC_IS_GCC) := -fno-gcse 6endif 7CFLAGS_core.o += -Wno-override-init $(cflags-nogcse-yy) 8 --- 38 unchanged lines hidden (view full) --- 47ifneq ($(CONFIG_CRYPTO),) 48obj-$(CONFIG_BPF_SYSCALL) += crypto.o 49endif 50obj-$(CONFIG_BPF_PRELOAD) += preload/ 51 52obj-$(CONFIG_BPF_SYSCALL) += relo_core.o 53obj-$(CONFIG_BPF_SYSCALL) += btf_iter.o 54obj-$(CONFIG_BPF_SYSCALL) += btf_relocate.o |
55obj-$(CONFIG_BPF_SYSCALL) += kmem_cache_iter.o |
|