X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2FKbuild;h=a5a840a7d900bb315cfdf34e7772469e4c026dfa;hb=e2d5dbc7d09c7aa4f7c391fcdd4dfc95ba1ed326;hp=e9b50d576e2f867898443a21dadfaa1111843934;hpb=7ab8c61663d23386a58fb2f36ab8e22d1c0b1efd;p=lttng-modules.git diff --git a/src/Kbuild b/src/Kbuild index e9b50d57..a5a840a7 100644 --- a/src/Kbuild +++ b/src/Kbuild @@ -1,8 +1,28 @@ # SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only) +ifdef CONFIG_LOCALVERSION # Check if dot-config is included. + ifeq ($(CONFIG_TRACEPOINTS),) + $(error The option CONFIG_TRACEPOINTS needs to be enabled in your kernel configuration) + endif # CONFIG_TRACEPOINTS +endif # ifdef CONFIG_LOCALVERSION + TOP_LTTNG_MODULES_DIR := $(shell dirname $(lastword $(MAKEFILE_LIST)))/.. -include $(TOP_LTTNG_MODULES_DIR)/Kbuild.common +lttng_check_linux_version = $(shell pwd)/include/linux/version.h +lttng_check_generated_linux_version = $(shell pwd)/include/generated/uapi/linux/version.h + +# +# Check for stale version.h, which can be a leftover from an old Linux +# kernel tree moved to a newer kernel version, only pruned by make +# distclean. +# +ifneq ($(wildcard $(lttng_check_linux_version)),) + ifneq ($(wildcard $(lttng_check_generated_linux_version)),) + $(error Duplicate version.h files found in $(lttng_check_linux_version) and $(lttng_check_generated_linux_version). Consider running make distclean on your kernel, or removing the stale $(lttng_check_linux_version) file) + endif +endif + +include $(TOP_LTTNG_MODULES_DIR)/src/Kbuild.common ccflags-y += -I$(TOP_LTTNG_MODULES_DIR)/include @@ -13,6 +33,12 @@ obj-$(CONFIG_LTTNG) += lttng-ring-buffer-client-mmap-discard.o obj-$(CONFIG_LTTNG) += lttng-ring-buffer-client-mmap-overwrite.o obj-$(CONFIG_LTTNG) += lttng-ring-buffer-metadata-mmap-client.o obj-$(CONFIG_LTTNG) += lttng-ring-buffer-event-notifier-client.o + +obj-$(CONFIG_LTTNG) += lttng-counter-client-percpu-32-modular.o +ifneq ($CONFIG_64BIT),) + obj-$(CONFIG_LTTNG) += lttng-counter-client-percpu-64-modular.o +endif # CONFIG_64BIT + obj-$(CONFIG_LTTNG) += lttng-clock.o obj-$(CONFIG_LTTNG) += lttng-tracer.o @@ -41,13 +67,14 @@ lttng-tracer-objs := lib/msgpack/msgpack.o \ lttng-context-vsgid.o \ lttng-context-interruptible.o \ lttng-context-need-reschedule.o \ - lttng-context-callstack.o lttng-calibrate.o \ + lttng-calibrate.o \ lttng-context-hostname.o \ + lttng-context-callstack.o \ probes/lttng.o \ lttng-tracker-id.o \ - lttng-filter.o lttng-filter-interpreter.o \ - lttng-filter-specialize.o \ - lttng-filter-validator.o \ + lttng-bytecode.o lttng-bytecode-interpreter.o \ + lttng-bytecode-specialize.o \ + lttng-bytecode-validator.o \ probes/lttng-probe-user.o \ lttng-tp-mempool.o \ lttng-event-notifier-notification.o @@ -58,6 +85,7 @@ lttng-wrapper-objs := wrapper/page_alloc.o \ wrapper/kallsyms.o \ wrapper/irqdesc.o \ wrapper/fdtable.o \ + wrapper/genhd.o \ lttng-wrapper-impl.o ifneq ($(CONFIG_HAVE_SYSCALL_TRACEPOINTS),) @@ -117,3 +145,4 @@ lttng-statedump-objs := lttng-statedump-impl.o obj-$(CONFIG_LTTNG) += probes/ obj-$(CONFIG_LTTNG) += lib/ +obj-$(CONFIG_LTTNG) += tests/