1 # SPDX-License-Identifier: GPL-2.0 !! 1 FILES= \ 2 include ../../scripts/Makefile.include !! 2 test-all.bin \ 3 !! 3 test-backtrace.bin \ 4 FILES= !! 4 test-bionic.bin \ 5 test-all.bin !! 5 test-dwarf.bin \ 6 test-backtrace.bin !! 6 test-dwarf_getlocations.bin \ 7 test-bionic.bin !! 7 test-fortify-source.bin \ 8 test-dwarf.bin !! 8 test-sync-compare-and-swap.bin \ 9 test-dwarf_getlocations.bin !! 9 test-glibc.bin \ 10 test-dwarf_getcfi.bin !! 10 test-gtk2.bin \ 11 test-eventfd.bin !! 11 test-gtk2-infobar.bin \ 12 test-fortify-source.bin !! 12 test-hello.bin \ 13 test-get_current_dir_name.bin !! 13 test-libaudit.bin \ 14 test-glibc.bin !! 14 test-libbfd.bin \ 15 test-gtk2.bin !! 15 test-liberty.bin \ 16 test-gtk2-infobar.bin !! 16 test-liberty-z.bin \ 17 test-hello.bin !! 17 test-cplus-demangle.bin \ 18 test-libaudit.bin !! 18 test-libelf.bin \ 19 test-libbfd.bin !! 19 test-libelf-getphdrnum.bin \ 20 test-libbfd-buildid.bin !! 20 test-libelf-gelf_getnote.bin \ 21 test-disassembler-four-args.bin !! 21 test-libelf-getshdrstrndx.bin \ 22 test-disassembler-init-styled.bin !! 22 test-libelf-mmap.bin \ 23 test-reallocarray.bin !! 23 test-libnuma.bin \ 24 test-libbfd-liberty.bin !! 24 test-numa_num_possible_cpus.bin \ 25 test-libbfd-liberty-z.bin !! 25 test-libperl.bin \ 26 test-cplus-demangle.bin !! 26 test-libpython.bin \ 27 test-cxa-demangle.bin !! 27 test-libpython-version.bin \ 28 test-libcap.bin !! 28 test-libslang.bin \ 29 test-libelf.bin !! 29 test-libcrypto.bin \ 30 test-libelf-getphdrnum.bin !! 30 test-libunwind.bin \ 31 test-libelf-gelf_getnote.bin !! 31 test-libunwind-debug-frame.bin \ 32 test-libelf-getshdrstrndx.bin !! 32 test-libunwind-x86.bin \ 33 test-libdebuginfod.bin !! 33 test-libunwind-x86_64.bin \ 34 test-libnuma.bin !! 34 test-libunwind-arm.bin \ 35 test-numa_num_possible_cpus.bin !! 35 test-libunwind-aarch64.bin \ 36 test-libperl.bin !! 36 test-libunwind-debug-frame-arm.bin \ 37 test-libpython.bin !! 37 test-libunwind-debug-frame-aarch64.bin \ 38 test-libslang.bin !! 38 test-pthread-attr-setaffinity-np.bin \ 39 test-libslang-include-subdir.bin !! 39 test-stackprotector-all.bin \ 40 test-libtraceevent.bin !! 40 test-timerfd.bin \ 41 test-libtracefs.bin !! 41 test-libdw-dwarf-unwind.bin \ 42 test-libcrypto.bin !! 42 test-libbabeltrace.bin \ 43 test-libunwind.bin !! 43 test-compile-32.bin \ 44 test-libunwind-debug-frame.bin !! 44 test-compile-x32.bin \ 45 test-libunwind-x86.bin !! 45 test-zlib.bin \ 46 test-libunwind-x86_64.bin !! 46 test-lzma.bin \ 47 test-libunwind-arm.bin !! 47 test-bpf.bin \ 48 test-libunwind-aarch64.bin !! 48 test-get_cpuid.bin \ 49 test-libunwind-debug-frame-arm.bin !! 49 test-sdt.bin \ 50 test-libunwind-debug-frame-aarch64.bi !! 50 test-cxx.bin 51 test-pthread-attr-setaffinity-np.bin << 52 test-pthread-barrier.bin << 53 test-stackprotector-all.bin << 54 test-timerfd.bin << 55 test-libdw-dwarf-unwind.bin << 56 test-libbabeltrace.bin << 57 test-libcapstone.bin << 58 test-compile-32.bin << 59 test-compile-x32.bin << 60 test-zlib.bin << 61 test-lzma.bin << 62 test-bpf.bin << 63 test-libbpf.bin << 64 test-get_cpuid.bin << 65 test-sdt.bin << 66 test-cxx.bin << 67 test-gettid.bin << 68 test-jvmti.bin << 69 test-jvmti-cmlr.bin << 70 test-scandirat.bin << 71 test-sched_getcpu.bin << 72 test-setns.bin << 73 test-libopencsd.bin << 74 test-clang.bin << 75 test-llvm.bin << 76 test-llvm-perf.bin \ << 77 test-libaio.bin << 78 test-libzstd.bin << 79 test-clang-bpf-co-re.bin << 80 test-file-handle.bin << 81 test-libpfm4.bin << 82 51 83 FILES := $(addprefix $(OUTPUT),$(FILES)) 52 FILES := $(addprefix $(OUTPUT),$(FILES)) 84 53 85 # Some distros provide the command $(CROSS_COM !! 54 CC := $(CROSS_COMPILE)gcc -MD 86 # searching packges installed with Multiarch. !! 55 CXX := $(CROSS_COMPILE)g++ -MD 87 # compilation if it is existed. !! 56 PKG_CONFIG := $(CROSS_COMPILE)pkg-config 88 ifneq (, $(shell which $(CROSS_COMPILE)pkg-con << 89 PKG_CONFIG ?= $(CROSS_COMPILE)pkg-config << 90 else << 91 PKG_CONFIG ?= pkg-config << 92 << 93 # PKG_CONFIG_PATH or PKG_CONFIG_LIBDIR, alon << 94 # for modified system root, are required for << 95 # If these PKG_CONFIG environment variables << 96 # paths are used instead. << 97 ifdef CROSS_COMPILE << 98 ifeq ($(PKG_CONFIG_LIBDIR)$(PKG_CONFIG_PAT << 99 CROSS_ARCH = $(shell $(CC) -dumpmachine) << 100 PKG_CONFIG_LIBDIR := /usr/local/$(CROSS_ << 101 PKG_CONFIG_LIBDIR := $(PKG_CONFIG_LIBDIR << 102 PKG_CONFIG_LIBDIR := $(PKG_CONFIG_LIBDIR << 103 PKG_CONFIG_LIBDIR := $(PKG_CONFIG_LIBDIR << 104 PKG_CONFIG_LIBDIR := $(PKG_CONFIG_LIBDIR << 105 export PKG_CONFIG_LIBDIR << 106 endif << 107 endif << 108 endif << 109 57 110 all: $(FILES) 58 all: $(FILES) 111 59 112 __BUILD = $(CC) $(CFLAGS) -MD -Wall -Werror -o !! 60 __BUILD = $(CC) $(CFLAGS) -Wall -Werror -o $@ $(patsubst %.bin,%.c,$(@F)) $(LDFLAGS) 113 BUILD = $(__BUILD) > $(@:.bin=.make.output) 61 BUILD = $(__BUILD) > $(@:.bin=.make.output) 2>&1 114 BUILD_BFD = $(BUILD) -DPACKAGE='"perf"' -lbf << 115 BUILD_ALL = $(BUILD) -fstack-protector-all - << 116 62 117 __BUILDXX = $(CXX) $(CXXFLAGS) -MD -Wall -Werr !! 63 __BUILDXX = $(CXX) $(CXXFLAGS) -Wall -Werror -o $@ $(patsubst %.bin,%.cpp,$(@F)) $(LDFLAGS) 118 BUILDXX = $(__BUILDXX) > $(@:.bin=.make.outp 64 BUILDXX = $(__BUILDXX) > $(@:.bin=.make.output) 2>&1 119 65 120 ############################### 66 ############################### 121 67 122 $(OUTPUT)test-all.bin: 68 $(OUTPUT)test-all.bin: 123 $(BUILD_ALL) || $(BUILD_ALL) -lopcodes !! 69 $(BUILD) -fstack-protector-all -O2 -D_FORTIFY_SOURCE=2 -ldw -lelf -lnuma -lelf -laudit -I/usr/include/slang -lslang $(shell $(PKG_CONFIG) --libs --cflags gtk+-2.0 2>/dev/null) $(FLAGS_PERL_EMBED) $(FLAGS_PYTHON_EMBED) -DPACKAGE='"perf"' -lbfd -ldl -lz -llzma 124 70 125 $(OUTPUT)test-hello.bin: 71 $(OUTPUT)test-hello.bin: 126 $(BUILD) 72 $(BUILD) 127 73 128 $(OUTPUT)test-pthread-attr-setaffinity-np.bin: 74 $(OUTPUT)test-pthread-attr-setaffinity-np.bin: 129 $(BUILD) -D_GNU_SOURCE -lpthread 75 $(BUILD) -D_GNU_SOURCE -lpthread 130 76 131 $(OUTPUT)test-pthread-barrier.bin: << 132 $(BUILD) -lpthread << 133 << 134 $(OUTPUT)test-stackprotector-all.bin: 77 $(OUTPUT)test-stackprotector-all.bin: 135 $(BUILD) -fstack-protector-all 78 $(BUILD) -fstack-protector-all 136 79 137 $(OUTPUT)test-fortify-source.bin: 80 $(OUTPUT)test-fortify-source.bin: 138 $(BUILD) -O2 -D_FORTIFY_SOURCE=2 81 $(BUILD) -O2 -D_FORTIFY_SOURCE=2 139 82 140 $(OUTPUT)test-bionic.bin: 83 $(OUTPUT)test-bionic.bin: 141 $(BUILD) 84 $(BUILD) 142 85 143 $(OUTPUT)test-libcap.bin: << 144 $(BUILD) -lcap << 145 << 146 $(OUTPUT)test-libelf.bin: 86 $(OUTPUT)test-libelf.bin: 147 $(BUILD) -lelf 87 $(BUILD) -lelf 148 88 149 $(OUTPUT)test-eventfd.bin: << 150 $(BUILD) << 151 << 152 $(OUTPUT)test-get_current_dir_name.bin: << 153 $(BUILD) << 154 << 155 $(OUTPUT)test-glibc.bin: 89 $(OUTPUT)test-glibc.bin: 156 $(BUILD) 90 $(BUILD) 157 91 158 $(OUTPUT)test-scandirat.bin: << 159 $(BUILD) << 160 << 161 $(OUTPUT)test-sched_getcpu.bin: << 162 $(BUILD) << 163 << 164 $(OUTPUT)test-setns.bin: << 165 $(BUILD) << 166 << 167 $(OUTPUT)test-libopencsd.bin: << 168 $(BUILD) # -lopencsd_c_api -lopencsd p << 169 # $(FEATURE_CHECK_LDFLAGS-lib << 170 << 171 DWARFLIBS := -ldw 92 DWARFLIBS := -ldw 172 ifeq ($(findstring -static,${LDFLAGS}),-static 93 ifeq ($(findstring -static,${LDFLAGS}),-static) 173 DWARFLIBS += -lelf -lz -llzma -lbz2 -lzstd !! 94 DWARFLIBS += -lelf -lebl -lz -llzma -lbz2 174 << 175 LIBDW_VERSION := $(shell $(PKG_CONFIG) --mod << 176 LIBDW_VERSION_1 := $(word 1, $(subst ., ,$(L << 177 LIBDW_VERSION_2 := $(word 2, $(subst ., ,$(L << 178 << 179 # Elfutils merged libebl.a into libdw.a star << 180 # Link libebl.a only if libdw is older than << 181 ifeq ($(shell test $(LIBDW_VERSION_2) -lt 17 << 182 DWARFLIBS += -lebl << 183 endif << 184 << 185 # Must put -ldl after -lebl for dependency << 186 DWARFLIBS += -ldl << 187 endif 95 endif 188 96 189 $(OUTPUT)test-dwarf.bin: 97 $(OUTPUT)test-dwarf.bin: 190 $(BUILD) $(DWARFLIBS) 98 $(BUILD) $(DWARFLIBS) 191 99 192 $(OUTPUT)test-dwarf_getlocations.bin: 100 $(OUTPUT)test-dwarf_getlocations.bin: 193 $(BUILD) $(DWARFLIBS) 101 $(BUILD) $(DWARFLIBS) 194 102 195 $(OUTPUT)test-dwarf_getcfi.bin: !! 103 $(OUTPUT)test-libelf-mmap.bin: 196 $(BUILD) $(DWARFLIBS) !! 104 $(BUILD) -lelf 197 105 198 $(OUTPUT)test-libelf-getphdrnum.bin: 106 $(OUTPUT)test-libelf-getphdrnum.bin: 199 $(BUILD) -lelf 107 $(BUILD) -lelf 200 108 201 $(OUTPUT)test-libelf-gelf_getnote.bin: 109 $(OUTPUT)test-libelf-gelf_getnote.bin: 202 $(BUILD) -lelf 110 $(BUILD) -lelf 203 111 204 $(OUTPUT)test-libelf-getshdrstrndx.bin: 112 $(OUTPUT)test-libelf-getshdrstrndx.bin: 205 $(BUILD) -lelf 113 $(BUILD) -lelf 206 114 207 $(OUTPUT)test-libdebuginfod.bin: << 208 $(BUILD) -ldebuginfod << 209 << 210 $(OUTPUT)test-libnuma.bin: 115 $(OUTPUT)test-libnuma.bin: 211 $(BUILD) -lnuma 116 $(BUILD) -lnuma 212 117 213 $(OUTPUT)test-numa_num_possible_cpus.bin: 118 $(OUTPUT)test-numa_num_possible_cpus.bin: 214 $(BUILD) -lnuma 119 $(BUILD) -lnuma 215 120 216 $(OUTPUT)test-libunwind.bin: 121 $(OUTPUT)test-libunwind.bin: 217 $(BUILD) -lelf -llzma !! 122 $(BUILD) -lelf 218 123 219 $(OUTPUT)test-libunwind-debug-frame.bin: 124 $(OUTPUT)test-libunwind-debug-frame.bin: 220 $(BUILD) -lelf -llzma !! 125 $(BUILD) -lelf 221 $(OUTPUT)test-libunwind-x86.bin: 126 $(OUTPUT)test-libunwind-x86.bin: 222 $(BUILD) -lelf -llzma -lunwind-x86 !! 127 $(BUILD) -lelf -lunwind-x86 223 128 224 $(OUTPUT)test-libunwind-x86_64.bin: 129 $(OUTPUT)test-libunwind-x86_64.bin: 225 $(BUILD) -lelf -llzma -lunwind-x86_64 !! 130 $(BUILD) -lelf -lunwind-x86_64 226 131 227 $(OUTPUT)test-libunwind-arm.bin: 132 $(OUTPUT)test-libunwind-arm.bin: 228 $(BUILD) -lelf -llzma -lunwind-arm !! 133 $(BUILD) -lelf -lunwind-arm 229 134 230 $(OUTPUT)test-libunwind-aarch64.bin: 135 $(OUTPUT)test-libunwind-aarch64.bin: 231 $(BUILD) -lelf -llzma -lunwind-aarch64 !! 136 $(BUILD) -lelf -lunwind-aarch64 232 137 233 $(OUTPUT)test-libunwind-debug-frame-arm.bin: 138 $(OUTPUT)test-libunwind-debug-frame-arm.bin: 234 $(BUILD) -lelf -llzma -lunwind-arm !! 139 $(BUILD) -lelf -lunwind-arm 235 140 236 $(OUTPUT)test-libunwind-debug-frame-aarch64.bi 141 $(OUTPUT)test-libunwind-debug-frame-aarch64.bin: 237 $(BUILD) -lelf -llzma -lunwind-aarch64 !! 142 $(BUILD) -lelf -lunwind-aarch64 238 143 239 $(OUTPUT)test-libaudit.bin: 144 $(OUTPUT)test-libaudit.bin: 240 $(BUILD) -laudit 145 $(BUILD) -laudit 241 146 242 $(OUTPUT)test-libslang.bin: 147 $(OUTPUT)test-libslang.bin: 243 $(BUILD) -lslang !! 148 $(BUILD) -I/usr/include/slang -lslang 244 << 245 $(OUTPUT)test-libslang-include-subdir.bin: << 246 $(BUILD) -lslang << 247 << 248 $(OUTPUT)test-libtraceevent.bin: << 249 $(BUILD) -ltraceevent << 250 << 251 $(OUTPUT)test-libtracefs.bin: << 252 $(BUILD) $(shell $(PKG_CONFIG) --cfla << 253 149 254 $(OUTPUT)test-libcrypto.bin: 150 $(OUTPUT)test-libcrypto.bin: 255 $(BUILD) -lcrypto 151 $(BUILD) -lcrypto 256 152 257 $(OUTPUT)test-gtk2.bin: 153 $(OUTPUT)test-gtk2.bin: 258 $(BUILD) $(shell $(PKG_CONFIG) --libs !! 154 $(BUILD) $(shell $(PKG_CONFIG) --libs --cflags gtk+-2.0 2>/dev/null) 259 155 260 $(OUTPUT)test-gtk2-infobar.bin: 156 $(OUTPUT)test-gtk2-infobar.bin: 261 $(BUILD) $(shell $(PKG_CONFIG) --libs 157 $(BUILD) $(shell $(PKG_CONFIG) --libs --cflags gtk+-2.0 2>/dev/null) 262 158 263 grep-libs = $(filter -l%,$(1)) 159 grep-libs = $(filter -l%,$(1)) 264 strip-libs = $(filter-out -l%,$(1)) 160 strip-libs = $(filter-out -l%,$(1)) 265 161 266 PERL_EMBED_LDOPTS = $(shell perl -MExtUtils::E 162 PERL_EMBED_LDOPTS = $(shell perl -MExtUtils::Embed -e ldopts 2>/dev/null) 267 PERL_EMBED_LDFLAGS = $(call strip-libs,$(PERL_ 163 PERL_EMBED_LDFLAGS = $(call strip-libs,$(PERL_EMBED_LDOPTS)) 268 PERL_EMBED_LIBADD = $(call grep-libs,$(PERL_EM 164 PERL_EMBED_LIBADD = $(call grep-libs,$(PERL_EMBED_LDOPTS)) 269 PERL_EMBED_CCOPTS = $(shell perl -MExtUtils::E 165 PERL_EMBED_CCOPTS = $(shell perl -MExtUtils::Embed -e ccopts 2>/dev/null) 270 FLAGS_PERL_EMBED=$(PERL_EMBED_CCOPTS) $(PERL_E 166 FLAGS_PERL_EMBED=$(PERL_EMBED_CCOPTS) $(PERL_EMBED_LDOPTS) 271 167 272 ifeq ($(CC_NO_CLANG), 0) << 273 PERL_EMBED_LDOPTS := $(filter-out -specs=%,$ << 274 PERL_EMBED_CCOPTS := $(filter-out -flto=auto << 275 PERL_EMBED_CCOPTS := $(filter-out -specs=%,$ << 276 FLAGS_PERL_EMBED += -Wno-compound-token-spli << 277 endif << 278 << 279 $(OUTPUT)test-libperl.bin: 168 $(OUTPUT)test-libperl.bin: 280 $(BUILD) $(FLAGS_PERL_EMBED) 169 $(BUILD) $(FLAGS_PERL_EMBED) 281 170 282 $(OUTPUT)test-libpython.bin: 171 $(OUTPUT)test-libpython.bin: 283 $(BUILD) $(FLAGS_PYTHON_EMBED) !! 172 $(BUILD) 284 << 285 $(OUTPUT)test-libbfd.bin: << 286 $(BUILD_BFD) << 287 << 288 $(OUTPUT)test-libbfd-buildid.bin: << 289 $(BUILD_BFD) || $(BUILD_BFD) -liberty << 290 << 291 $(OUTPUT)test-disassembler-four-args.bin: << 292 $(BUILD_BFD) -lopcodes || $(BUILD_BFD) << 293 $(BUILD_BFD) -lopcodes -liberty -lz << 294 << 295 $(OUTPUT)test-disassembler-init-styled.bin: << 296 $(BUILD_BFD) -lopcodes || $(BUILD_BFD) << 297 $(BUILD_BFD) -lopcodes -liberty -lz << 298 173 299 $(OUTPUT)test-reallocarray.bin: !! 174 $(OUTPUT)test-libpython-version.bin: 300 $(BUILD) 175 $(BUILD) 301 176 302 $(OUTPUT)test-libbfd-liberty.bin: !! 177 $(OUTPUT)test-libbfd.bin: >> 178 $(BUILD) -DPACKAGE='"perf"' -lbfd -lz -liberty -ldl >> 179 >> 180 $(OUTPUT)test-liberty.bin: 303 $(CC) $(CFLAGS) -Wall -Werror -o $@ te 181 $(CC) $(CFLAGS) -Wall -Werror -o $@ test-libbfd.c -DPACKAGE='"perf"' $(LDFLAGS) -lbfd -ldl -liberty 304 182 305 $(OUTPUT)test-libbfd-liberty-z.bin: !! 183 $(OUTPUT)test-liberty-z.bin: 306 $(CC) $(CFLAGS) -Wall -Werror -o $@ te 184 $(CC) $(CFLAGS) -Wall -Werror -o $@ test-libbfd.c -DPACKAGE='"perf"' $(LDFLAGS) -lbfd -ldl -liberty -lz 307 185 308 $(OUTPUT)test-cplus-demangle.bin: 186 $(OUTPUT)test-cplus-demangle.bin: 309 $(BUILD) -liberty 187 $(BUILD) -liberty 310 188 311 $(OUTPUT)test-cxa-demangle.bin: << 312 $(BUILDXX) << 313 << 314 $(OUTPUT)test-backtrace.bin: 189 $(OUTPUT)test-backtrace.bin: 315 $(BUILD) 190 $(BUILD) 316 191 317 $(OUTPUT)test-timerfd.bin: 192 $(OUTPUT)test-timerfd.bin: 318 $(BUILD) 193 $(BUILD) 319 194 320 $(OUTPUT)test-libdw-dwarf-unwind.bin: 195 $(OUTPUT)test-libdw-dwarf-unwind.bin: 321 $(BUILD) # -ldw provided by $(FEATURE_ 196 $(BUILD) # -ldw provided by $(FEATURE_CHECK_LDFLAGS-libdw-dwarf-unwind) 322 197 323 $(OUTPUT)test-libbabeltrace.bin: 198 $(OUTPUT)test-libbabeltrace.bin: 324 $(BUILD) # -lbabeltrace provided by $( 199 $(BUILD) # -lbabeltrace provided by $(FEATURE_CHECK_LDFLAGS-libbabeltrace) 325 200 326 $(OUTPUT)test-libcapstone.bin: !! 201 $(OUTPUT)test-sync-compare-and-swap.bin: 327 $(BUILD) # -lcapstone provided by $(FE !! 202 $(BUILD) 328 203 329 $(OUTPUT)test-compile-32.bin: 204 $(OUTPUT)test-compile-32.bin: 330 $(CC) -m32 -o $@ test-compile.c 205 $(CC) -m32 -o $@ test-compile.c 331 206 332 $(OUTPUT)test-compile-x32.bin: 207 $(OUTPUT)test-compile-x32.bin: 333 $(CC) -mx32 -o $@ test-compile.c 208 $(CC) -mx32 -o $@ test-compile.c 334 209 335 $(OUTPUT)test-zlib.bin: 210 $(OUTPUT)test-zlib.bin: 336 $(BUILD) -lz 211 $(BUILD) -lz 337 212 338 $(OUTPUT)test-lzma.bin: 213 $(OUTPUT)test-lzma.bin: 339 $(BUILD) -llzma 214 $(BUILD) -llzma 340 215 341 $(OUTPUT)test-get_cpuid.bin: 216 $(OUTPUT)test-get_cpuid.bin: 342 $(BUILD) 217 $(BUILD) 343 218 344 $(OUTPUT)test-bpf.bin: 219 $(OUTPUT)test-bpf.bin: 345 $(BUILD) 220 $(BUILD) 346 221 347 $(OUTPUT)test-libbpf.bin: << 348 $(BUILD) -lbpf << 349 << 350 $(OUTPUT)test-libbpf-btf__load_from_kernel_by_ << 351 $(BUILD) -lbpf << 352 << 353 $(OUTPUT)test-libbpf-bpf_prog_load.bin: << 354 $(BUILD) -lbpf << 355 << 356 $(OUTPUT)test-libbpf-bpf_map_create.bin: << 357 $(BUILD) -lbpf << 358 << 359 $(OUTPUT)test-libbpf-bpf_object__next_program. << 360 $(BUILD) -lbpf << 361 << 362 $(OUTPUT)test-libbpf-bpf_object__next_map.bin: << 363 $(BUILD) -lbpf << 364 << 365 $(OUTPUT)test-libbpf-bpf_program__set_insns.bi << 366 $(BUILD) -lbpf << 367 << 368 $(OUTPUT)test-libbpf-btf__raw_data.bin: << 369 $(BUILD) -lbpf << 370 << 371 $(OUTPUT)test-sdt.bin: 222 $(OUTPUT)test-sdt.bin: 372 $(BUILD) 223 $(BUILD) 373 224 374 $(OUTPUT)test-cxx.bin: 225 $(OUTPUT)test-cxx.bin: 375 $(BUILDXX) -std=gnu++11 226 $(BUILDXX) -std=gnu++11 376 227 377 $(OUTPUT)test-gettid.bin: << 378 $(BUILD) << 379 << 380 $(OUTPUT)test-jvmti.bin: << 381 $(BUILD) << 382 << 383 $(OUTPUT)test-jvmti-cmlr.bin: << 384 $(BUILD) << 385 << 386 $(OUTPUT)test-llvm.bin: << 387 $(BUILDXX) -std=gnu++17 << 388 -I$(shell $(LLVM_CONFIG) --inc << 389 -L$(shell $(LLVM_CONFIG) --lib << 390 $(shell $(LLVM_CONFIG) --libs << 391 $(shell $(LLVM_CONFIG) --syste << 392 > $(@:.bin=.make.output) 2>&1 << 393 << 394 $(OUTPUT)test-llvm-perf.bin: << 395 $(BUILDXX) -std=gnu++17 << 396 -I$(shell $(LLVM_CONFIG) --inc << 397 -L$(shell $(LLVM_CONFIG) --lib << 398 $(shell $(LLVM_CONFIG) --libs << 399 $(shell $(LLVM_CONFIG) --syste << 400 > $(@:.bin=.make.output) 2>&1 << 401 << 402 $(OUTPUT)test-clang.bin: << 403 $(BUILDXX) -std=gnu++17 << 404 -I$(shell $(LLVM_CONFIG) --inc << 405 -L$(shell $(LLVM_CONFIG) --lib << 406 -Wl,--start-group -lclang-cpp << 407 $(shell $(LLVM_CONFIG) --libs << 408 $(shell $(LLVM_CONFIG) --syste << 409 > $(@:.bin=.make.output) 2>&1 << 410 << 411 -include $(OUTPUT)*.d 228 -include $(OUTPUT)*.d 412 << 413 $(OUTPUT)test-libaio.bin: << 414 $(BUILD) -lrt << 415 << 416 $(OUTPUT)test-libzstd.bin: << 417 $(BUILD) -lzstd << 418 << 419 $(OUTPUT)test-clang-bpf-co-re.bin: << 420 $(CLANG) -S -g --target=bpf -o - $(pat << 421 grep BTF_KIND_VAR << 422 << 423 $(OUTPUT)test-file-handle.bin: << 424 $(BUILD) << 425 << 426 $(OUTPUT)test-libpfm4.bin: << 427 $(BUILD) -lpfm << 428 229 429 ############################### 230 ############################### 430 231 431 clean: 232 clean: 432 rm -f $(FILES) $(OUTPUT)*.d $(FILES:.b 233 rm -f $(FILES) $(OUTPUT)*.d $(FILES:.bin=.make.output)
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.