https://github.com/torvalds/linux
Raw File
Tip revision: f915a3e5b0182dd7376f11337e231500a157e1f4 authored by Linus Torvalds on 19 June 2024, 01:14:48 UTC
arm64: word-at-a-time: improve byte count calculations for LE
Tip revision: f915a3e
Makefile
# SPDX-License-Identifier: GPL-2.0
obj-$(CONFIG_UPROBES)		+= decode.o decode-arm.o uprobes/
obj-$(CONFIG_KPROBES)		+= decode.o kprobes/
ifdef CONFIG_THUMB2_KERNEL
obj-$(CONFIG_KPROBES)		+= decode-thumb.o
else
obj-$(CONFIG_KPROBES)		+= decode-arm.o
endif
back to top