Makefile 9.5 KB
Newer Older
1
# SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause)
2 3
# Most of this file is copied from tools/lib/traceevent/Makefile

4 5 6 7
LIBBPF_VERSION := $(shell \
	grep -oE '^LIBBPF_([0-9.]+)' libbpf.map | \
	sort -rV | head -n1 | cut -d'_' -f2)
LIBBPF_MAJOR_VERSION := $(firstword $(subst ., ,$(LIBBPF_VERSION)))
8 9 10

MAKEFLAGS += --no-print-directory

11
ifeq ($(srctree),)
12
srctree := $(patsubst %/,%,$(dir $(CURDIR)))
13 14 15 16
srctree := $(patsubst %/,%,$(dir $(srctree)))
srctree := $(patsubst %/,%,$(dir $(srctree)))
#$(info Determined 'srctree' to be $(srctree))
endif
17 18 19 20 21 22 23 24 25 26

INSTALL = install

# Use DESTDIR for installing into a different root directory.
# This is useful for building a package. The program will be
# installed in this directory as if it was the root directory.
# Then the build tool can move it later.
DESTDIR ?=
DESTDIR_SQ = '$(subst ','\'',$(DESTDIR))'

27 28
include $(srctree)/tools/scripts/Makefile.arch

29 30 31 32 33 34 35 36 37 38 39 40 41 42
ifeq ($(LP64), 1)
  libdir_relative = lib64
else
  libdir_relative = lib
endif

prefix ?= /usr/local
libdir = $(prefix)/$(libdir_relative)
man_dir = $(prefix)/share/man
man_dir_SQ = '$(subst ','\'',$(man_dir))'

export man_dir man_dir_SQ INSTALL
export DESTDIR DESTDIR_SQ

43
include $(srctree)/tools/scripts/Makefile.include
44 45 46 47 48 49 50 51 52 53

# copy a bit from Linux kbuild

ifeq ("$(origin V)", "command line")
  VERBOSE = $(V)
endif
ifndef VERBOSE
  VERBOSE = 0
endif

54
FEATURE_USER = .libbpf
55
FEATURE_TESTS = libelf libelf-mmap bpf reallocarray cxx
56
FEATURE_DISPLAY = libelf bpf
57

58
INCLUDES = -I. -I$(srctree)/tools/include -I$(srctree)/tools/arch/$(ARCH)/include/uapi -I$(srctree)/tools/include/uapi
59 60
FEATURE_CHECK_CFLAGS-bpf = $(INCLUDES)

61 62 63 64 65 66 67 68 69
check_feat := 1
NON_CHECK_FEAT_TARGETS := clean TAGS tags cscope help
ifdef MAKECMDGOALS
ifeq ($(filter-out $(NON_CHECK_FEAT_TARGETS),$(MAKECMDGOALS)),)
  check_feat := 0
endif
endif

ifeq ($(check_feat),1)
70
ifeq ($(FEATURES_DUMP),)
71
include $(srctree)/tools/build/Makefile.feature
72 73 74
else
include $(FEATURES_DUMP)
endif
75
endif
76 77 78 79 80 81 82 83 84 85

export prefix libdir src obj

# Shell quotes
libdir_SQ = $(subst ','\'',$(libdir))
libdir_relative_SQ = $(subst ','\'',$(libdir_relative))

OBJ		= $@
N		=

86 87
LIB_TARGET	= libbpf.a libbpf.so.$(LIBBPF_VERSION)
LIB_FILE	= libbpf.a libbpf.so*
88
PC_FILE		= libbpf.pc
89 90 91 92 93 94 95 96 97 98 99 100

# Set compile option CFLAGS
ifdef EXTRA_CFLAGS
  CFLAGS := $(EXTRA_CFLAGS)
else
  CFLAGS := -g -Wall
endif

ifeq ($(feature-libelf-mmap), 1)
  override CFLAGS += -DHAVE_LIBELF_MMAP_SUPPORT
endif

101 102 103 104
ifeq ($(feature-reallocarray), 0)
  override CFLAGS += -DCOMPAT_NEED_REALLOCARRAY
endif

105 106 107 108 109
# Append required CFLAGS
override CFLAGS += $(EXTRA_WARNINGS)
override CFLAGS += -Werror -Wall
override CFLAGS += -fPIC
override CFLAGS += $(INCLUDES)
110
override CFLAGS += -fvisibility=hidden
111
override CFLAGS += -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64
112 113 114 115 116 117 118

ifeq ($(VERBOSE),1)
  Q =
else
  Q = @
endif

119
# Disable command line variables (CFLAGS) override from top
120 121 122 123
# level Makefile (perf), otherwise build Makefile will get
# the same command line setup.
MAKEOVERRIDES=

124 125
all:

126
export srctree OUTPUT CC LD CFLAGS V
J
Jiri Olsa 已提交
127
include $(srctree)/tools/build/Makefile.include
128

129 130 131 132 133
BPF_IN		:= $(OUTPUT)libbpf-in.o
VERSION_SCRIPT	:= libbpf.map

LIB_TARGET	:= $(addprefix $(OUTPUT),$(LIB_TARGET))
LIB_FILE	:= $(addprefix $(OUTPUT),$(LIB_FILE))
134
PC_FILE		:= $(addprefix $(OUTPUT),$(PC_FILE))
135

136 137
TAGS_PROG := $(if $(shell which etags 2>/dev/null),etags,ctags)

138
GLOBAL_SYM_COUNT = $(shell readelf -s --wide $(BPF_IN) | \
K
Kevin Laatz 已提交
139 140 141
			   cut -d "@" -f1 | sed 's/_v[0-9]_[0-9]_[0-9].*//' | \
			   awk '/GLOBAL/ && /DEFAULT/ && !/UND/ {print $$8}' | \
			   sort -u | wc -l)
142
VERSIONED_SYM_COUNT = $(shell readelf -s --wide $(OUTPUT)libbpf.so | \
A
Andrey Ignatov 已提交
143 144
			      grep -Eo '[^ ]+@LIBBPF_' | cut -d@ -f1 | sort -u | wc -l)

145
CMD_TARGETS = $(LIB_TARGET) $(PC_FILE)
146

147 148 149 150 151 152
CXX_TEST_TARGET = $(OUTPUT)test_libbpf

ifeq ($(feature-cxx), 1)
	CMD_TARGETS += $(CXX_TEST_TARGET)
endif

153 154
TARGETS = $(CMD_TARGETS)

155 156
all: fixdep
	$(Q)$(MAKE) all_cmd
157

A
Andrey Ignatov 已提交
158
all_cmd: $(CMD_TARGETS) check
159

160
$(BPF_IN): force elfdep bpfdep bpf_helper_defs.h
161
	@(test -f ../../include/uapi/linux/bpf.h -a -f ../../../include/uapi/linux/bpf.h && ( \
162
	(diff -B ../../include/uapi/linux/bpf.h ../../../include/uapi/linux/bpf.h >/dev/null) || \
163
	echo "Warning: Kernel ABI header at 'tools/include/uapi/linux/bpf.h' differs from latest version at 'include/uapi/linux/bpf.h'" >&2 )) || true
164
	@(test -f ../../include/uapi/linux/bpf_common.h -a -f ../../../include/uapi/linux/bpf_common.h && ( \
165
	(diff -B ../../include/uapi/linux/bpf_common.h ../../../include/uapi/linux/bpf_common.h >/dev/null) || \
166
	echo "Warning: Kernel ABI header at 'tools/include/uapi/linux/bpf_common.h' differs from latest version at 'include/uapi/linux/bpf_common.h'" >&2 )) || true
167 168 169 170 171 172
	@(test -f ../../include/uapi/linux/netlink.h -a -f ../../../include/uapi/linux/netlink.h && ( \
	(diff -B ../../include/uapi/linux/netlink.h ../../../include/uapi/linux/netlink.h >/dev/null) || \
	echo "Warning: Kernel ABI header at 'tools/include/uapi/linux/netlink.h' differs from latest version at 'include/uapi/linux/netlink.h'" >&2 )) || true
	@(test -f ../../include/uapi/linux/if_link.h -a -f ../../../include/uapi/linux/if_link.h && ( \
	(diff -B ../../include/uapi/linux/if_link.h ../../../include/uapi/linux/if_link.h >/dev/null) || \
	echo "Warning: Kernel ABI header at 'tools/include/uapi/linux/if_link.h' differs from latest version at 'include/uapi/linux/if_link.h'" >&2 )) || true
173 174 175
	@(test -f ../../include/uapi/linux/if_xdp.h -a -f ../../../include/uapi/linux/if_xdp.h && ( \
	(diff -B ../../include/uapi/linux/if_xdp.h ../../../include/uapi/linux/if_xdp.h >/dev/null) || \
	echo "Warning: Kernel ABI header at 'tools/include/uapi/linux/if_xdp.h' differs from latest version at 'include/uapi/linux/if_xdp.h'" >&2 )) || true
176 177
	$(Q)$(MAKE) $(build)=libbpf

178 179 180 181
bpf_helper_defs.h: $(srctree)/include/uapi/linux/bpf.h
	$(Q)$(srctree)/scripts/bpf_helpers_doc.py --header 		\
		--file $(srctree)/include/uapi/linux/bpf.h > bpf_helper_defs.h

182 183 184
$(OUTPUT)libbpf.so: $(OUTPUT)libbpf.so.$(LIBBPF_VERSION)

$(OUTPUT)libbpf.so.$(LIBBPF_VERSION): $(BPF_IN)
185
	$(QUIET_LINK)$(CC) --shared -Wl,-soname,libbpf.so.$(LIBBPF_MAJOR_VERSION) \
186
				    -Wl,--version-script=$(VERSION_SCRIPT) $^ -lelf -o $@
187
	@ln -sf $(@F) $(OUTPUT)libbpf.so
188
	@ln -sf $(@F) $(OUTPUT)libbpf.so.$(LIBBPF_MAJOR_VERSION)
189 190 191 192

$(OUTPUT)libbpf.a: $(BPF_IN)
	$(QUIET_LINK)$(RM) $@; $(AR) rcs $@ $^

193
$(OUTPUT)test_libbpf: test_libbpf.cpp $(OUTPUT)libbpf.a
194
	$(QUIET_LINK)$(CXX) $(INCLUDES) $^ -lelf -o $@
195

196 197 198 199 200 201
$(OUTPUT)libbpf.pc:
	$(QUIET_GEN)sed -e "s|@PREFIX@|$(prefix)|" \
		-e "s|@LIBDIR@|$(libdir_SQ)|" \
		-e "s|@VERSION@|$(LIBBPF_VERSION)|" \
		< libbpf.pc.template > $@

A
Andrey Ignatov 已提交
202 203 204 205 206 207 208 209 210
check: check_abi

check_abi: $(OUTPUT)libbpf.so
	@if [ "$(GLOBAL_SYM_COUNT)" != "$(VERSIONED_SYM_COUNT)" ]; then	 \
		echo "Warning: Num of global symbols in $(BPF_IN)"	 \
		     "($(GLOBAL_SYM_COUNT)) does NOT match with num of"	 \
		     "versioned symbols in $^ ($(VERSIONED_SYM_COUNT))." \
		     "Please make sure all LIBBPF_API symbols are"	 \
		     "versioned in $(VERSION_SCRIPT)." >&2;		 \
211
		readelf -s --wide $(OUTPUT)libbpf-in.o |		 \
K
Kevin Laatz 已提交
212
		    cut -d "@" -f1 | sed 's/_v[0-9]_[0-9]_[0-9].*//' |	 \
213 214 215 216 217 218 219 220 221
		    awk '/GLOBAL/ && /DEFAULT/ && !/UND/ {print $$8}'|   \
		    sort -u > $(OUTPUT)libbpf_global_syms.tmp;		 \
		readelf -s --wide $(OUTPUT)libbpf.so |			 \
		    grep -Eo '[^ ]+@LIBBPF_' | cut -d@ -f1 |		 \
		    sort -u > $(OUTPUT)libbpf_versioned_syms.tmp; 	 \
		diff -u $(OUTPUT)libbpf_global_syms.tmp			 \
		     $(OUTPUT)libbpf_versioned_syms.tmp;		 \
		rm $(OUTPUT)libbpf_global_syms.tmp			 \
		   $(OUTPUT)libbpf_versioned_syms.tmp;			 \
A
Andrey Ignatov 已提交
222 223 224
		exit 1;							 \
	fi

225 226 227 228 229 230
define do_install_mkdir
	if [ ! -d '$(DESTDIR_SQ)$1' ]; then		\
		$(INSTALL) -d -m 755 '$(DESTDIR_SQ)$1';	\
	fi
endef

231 232 233 234
define do_install
	if [ ! -d '$(DESTDIR_SQ)$2' ]; then		\
		$(INSTALL) -d -m 755 '$(DESTDIR_SQ)$2';	\
	fi;						\
235
	$(INSTALL) $1 $(if $3,-m $3,) '$(DESTDIR_SQ)$2'
236 237 238
endef

install_lib: all_cmd
239 240 241
	$(call QUIET_INSTALL, $(LIB_TARGET)) \
		$(call do_install_mkdir,$(libdir_SQ)); \
		cp -fpR $(LIB_FILE) $(DESTDIR)$(libdir_SQ)
242

243
install_headers: bpf_helper_defs.h
244
	$(call QUIET_INSTALL, headers) \
245
		$(call do_install,bpf.h,$(prefix)/include/bpf,644); \
246 247
		$(call do_install,libbpf.h,$(prefix)/include/bpf,644); \
		$(call do_install,btf.h,$(prefix)/include/bpf,644); \
248
		$(call do_install,libbpf_util.h,$(prefix)/include/bpf,644); \
249 250 251 252
		$(call do_install,xsk.h,$(prefix)/include/bpf,644); \
		$(call do_install,bpf_helpers.h,$(prefix)/include/bpf,644); \
		$(call do_install,bpf_helper_defs.h,$(prefix)/include/bpf,644); \
		$(call do_install,bpf_tracing.h,$(prefix)/include/bpf,644); \
253 254
		$(call do_install,bpf_endian.h,$(prefix)/include/bpf,644); \
		$(call do_install,bpf_core_read.h,$(prefix)/include/bpf,644);
255

256 257 258 259 260
install_pkgconfig: $(PC_FILE)
	$(call QUIET_INSTALL, $(PC_FILE)) \
		$(call do_install,$(PC_FILE),$(libdir_SQ)/pkgconfig,644)

install: install_lib install_pkgconfig
261 262 263 264 265 266 267 268

### Cleaning rules

config-clean:
	$(call QUIET_CLEAN, config)
	$(Q)$(MAKE) -C $(srctree)/tools/build/feature/ clean >/dev/null

clean:
269
	$(call QUIET_CLEAN, libbpf) $(RM) $(TARGETS) $(CXX_TEST_TARGET) \
270
		*.o *~ *.a *.so *.so.$(LIBBPF_MAJOR_VERSION) .*.d .*.cmd \
271
		*.pc LIBBPF-CFLAGS bpf_helper_defs.h
272
	$(call QUIET_CLEAN, core-gen) $(RM) $(OUTPUT)FEATURE-DUMP.libbpf
273 274 275



276
PHONY += force elfdep bpfdep cscope tags
277 278 279
force:

elfdep:
280
	@if [ "$(feature-libelf)" != "1" ]; then echo "No libelf found"; exit 1 ; fi
281 282

bpfdep:
283
	@if [ "$(feature-bpf)" != "1" ]; then echo "BPF API too old"; exit 1 ; fi
284

285 286 287 288 289 290 291 292
cscope:
	ls *.c *.h > cscope.files
	cscope -b -q -I $(srctree)/include -f cscope.out

tags:
	rm -f TAGS tags
	ls *.c *.h | xargs $(TAGS_PROG) -a

293 294 295
# Declare the contents of the .PHONY variable as phony.  We keep that
# information in a variable so we can use it in if_changed and friends.
.PHONY: $(PHONY)