summaryrefslogtreecommitdiff
path: root/tools/perf
diff options
context:
space:
mode:
authorJames Clark <james.clark@linaro.org>2025-12-23 20:00:25 +0300
committerArnaldo Carvalho de Melo <acme@redhat.com>2026-01-07 01:11:13 +0300
commitae323bc241d25f5ebc56f0b2a6d580b7233647c0 (patch)
treecc69c6209f4abf72e0699559ad3fb41e7160d60d /tools/perf
parent7fc37b588aaaf72145764b4c3b6184431471b3e0 (diff)
downloadlinux-ae323bc241d25f5ebc56f0b2a6d580b7233647c0.tar.xz
perf build: Do all non-distro feature checks in one go
None of the if statements or variable assignments in the non-distro block actually affect the feature checks. Just do them all in one place so the flow isn't obscured. Signed-off-by: James Clark <james.clark@linaro.org> Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com> Cc: Bill Wendling <morbo@google.com> Cc: Ian Rogers <irogers@google.com> Cc: Ingo Molnar <mingo@redhat.com> Cc: Jiri Olsa <jolsa@kernel.org> Cc: Justin Stitt <justinstitt@google.com> Cc: Leo Yan <leo.yan@arm.com> Cc: Mark Rutland <mark.rutland@arm.com> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Nathan Chancellor <nathan@kernel.org> Cc: Nick Desaulniers <nick.desaulniers+lkml@gmail.com> Cc: Peter Zijlstra <peterz@infradead.org> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf')
-rw-r--r--tools/perf/Makefile.config32
1 files changed, 12 insertions, 20 deletions
diff --git a/tools/perf/Makefile.config b/tools/perf/Makefile.config
index bbfebbe26f4d..85075de2aedd 100644
--- a/tools/perf/Makefile.config
+++ b/tools/perf/Makefile.config
@@ -931,36 +931,28 @@ ifneq ($(NO_JEVENTS),1)
endif
ifdef BUILD_NONDISTRO
+ # call all detections now so we get correct status in VF output
$(call feature_check,libbfd)
+ $(call feature_check,disassembler-four-args)
+ $(call feature_check,disassembler-init-styled)
+ $(call feature_check,libbfd-buildid)
+ $(call feature_check,libbfd-liberty)
+ $(call feature_check,libbfd-liberty-z)
+ # we may be on a system that requires -liberty and (maybe) -lz
+ # to link against -lbfd; test each case individually here
ifeq ($(feature-libbfd), 1)
EXTLIBS += -lbfd -lopcodes
- else
- # we are on a system that requires -liberty and (maybe) -lz
- # to link against -lbfd; test each case individually here
-
- # call all detections now so we get correct
- # status in VF output
- $(call feature_check,libbfd-liberty)
- $(call feature_check,libbfd-liberty-z)
-
- ifeq ($(feature-libbfd-liberty), 1)
- EXTLIBS += -lbfd -lopcodes -liberty
- else
- ifeq ($(feature-libbfd-liberty-z), 1)
- EXTLIBS += -lbfd -lopcodes -liberty -lz
- endif
- endif
- $(call feature_check,disassembler-four-args)
- $(call feature_check,disassembler-init-styled)
+ else ifeq ($(feature-libbfd-liberty), 1)
+ EXTLIBS += -lbfd -lopcodes -liberty
+ else ifeq ($(feature-libbfd-liberty-z), 1)
+ EXTLIBS += -lbfd -lopcodes -liberty -lz
endif
CFLAGS += -DHAVE_LIBBFD_SUPPORT
CXXFLAGS += -DHAVE_LIBBFD_SUPPORT
$(call detected,CONFIG_LIBBFD)
- $(call feature_check,libbfd-buildid)
-
ifeq ($(feature-libbfd-buildid), 1)
CFLAGS += -DHAVE_LIBBFD_BUILDID_SUPPORT
else