[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CAM9d7cgpcVcUZo6ExLWis2Pu4V0FXdsNx+ZoKUWrOYqgqyZTiQ@mail.gmail.com>
Date: Wed, 9 Nov 2022 12:12:16 -0800
From: Namhyung Kim <namhyung@...nel.org>
To: Ian Rogers <irogers@...gle.com>
Cc: Peter Zijlstra <peterz@...radead.org>,
Ingo Molnar <mingo@...hat.com>,
Arnaldo Carvalho de Melo <acme@...nel.org>,
Mark Rutland <mark.rutland@....com>,
Alexander Shishkin <alexander.shishkin@...ux.intel.com>,
Jiri Olsa <jolsa@...nel.org>,
Masahiro Yamada <masahiroy@...nel.org>,
Nicolas Schier <nicolas@...sle.eu>,
linux-kernel@...r.kernel.org, linux-perf-users@...r.kernel.org,
bpf@...r.kernel.org, Nick Desaulniers <ndesaulniers@...gle.com>,
Andrii Nakryiko <andrii.nakryiko@...il.com>,
Stephane Eranian <eranian@...gle.com>
Subject: Re: [PATCH v2 08/14] tools lib perf: Add missing install headers
On Wed, Nov 9, 2022 at 10:50 AM Ian Rogers <irogers@...gle.com> wrote:
>
> Headers necessary for the perf build. Note, internal headers are also
> installed as these are necessary for the build.
Yeah, it's sad we are using those internal headers in perf.
Ideally libperf provides callbacks to associate private data
to each public data structure (e.g. evsel, evlist, etc). And
external users just use public APIs only.
But that would be a major change.
Thanks,
Namhyung
>
> Signed-off-by: Ian Rogers <irogers@...gle.com>
> ---
> tools/lib/perf/Makefile | 10 +++++++++-
> 1 file changed, 9 insertions(+), 1 deletion(-)
>
> diff --git a/tools/lib/perf/Makefile b/tools/lib/perf/Makefile
> index 21df023a2103..1badc0a04676 100644
> --- a/tools/lib/perf/Makefile
> +++ b/tools/lib/perf/Makefile
> @@ -189,13 +189,21 @@ install_lib: libs
>
> install_headers:
> $(call QUIET_INSTALL, headers) \
> + $(call do_install,include/perf/bpf_perf.h,$(prefix)/include/perf,644); \
> $(call do_install,include/perf/core.h,$(prefix)/include/perf,644); \
> $(call do_install,include/perf/cpumap.h,$(prefix)/include/perf,644); \
> $(call do_install,include/perf/threadmap.h,$(prefix)/include/perf,644); \
> $(call do_install,include/perf/evlist.h,$(prefix)/include/perf,644); \
> $(call do_install,include/perf/evsel.h,$(prefix)/include/perf,644); \
> $(call do_install,include/perf/event.h,$(prefix)/include/perf,644); \
> - $(call do_install,include/perf/mmap.h,$(prefix)/include/perf,644);
> + $(call do_install,include/perf/mmap.h,$(prefix)/include/perf,644); \
> + $(call do_install,include/internal/cpumap.h,$(prefix)/include/internal,644); \
> + $(call do_install,include/internal/evlist.h,$(prefix)/include/internal,644); \
> + $(call do_install,include/internal/evsel.h,$(prefix)/include/internal,644); \
> + $(call do_install,include/internal/lib.h,$(prefix)/include/internal,644); \
> + $(call do_install,include/internal/mmap.h,$(prefix)/include/internal,644); \
> + $(call do_install,include/internal/threadmap.h,$(prefix)/include/internal,644); \
> + $(call do_install,include/internal/xyarray.h,$(prefix)/include/internal,644);
>
> install_pkgconfig: $(LIBPERF_PC)
> $(call QUIET_INSTALL, $(LIBPERF_PC)) \
> --
> 2.38.1.431.g37b22c650d-goog
>
Powered by blists - more mailing lists