Re: [PATCH 10/10] tools/libs: Write out an ABI analysis when abi-dumper is available

2021-02-16 Thread Ian Jackson
Andrew Cooper writes ("[PATCH 10/10] tools/libs: Write out an ABI analysis when abi-dumper is available"): > Signed-off-by: Andrew Cooper ... > +# If abi-dumper is available, write out the ABI analysis > +ifneq ($(ABI_DUMPER),) > +libs: $(PKG_ABI) > +$(PKG_ABI): lib$(

Re: [PATCH 10/10] tools/libs: Write out an ABI analysis when abi-dumper is available

2021-02-16 Thread Ian Jackson
Andrew Cooper writes ("[PATCH 10/10] tools/libs: Write out an ABI analysis when abi-dumper is available"): > Signed-off-by: Andrew Cooper Release-Acked-by: Ian Jackson

Re: [PATCH 10/10] tools/libs: Write out an ABI analysis when abi-dumper is available

2021-02-12 Thread Andrew Cooper
On 12/02/2021 16:12, Jan Beulich wrote: > On 12.02.2021 16:39, Andrew Cooper wrote: >> --- a/tools/libs/libs.mk >> +++ b/tools/libs/libs.mk >> @@ -49,6 +49,8 @@ PKG_CONFIG_LOCAL := $(PKG_CONFIG_DIR)/$(PKG_CONFIG) >> LIBHEADER ?= $(LIB_FILE_NAME).h >> LIBHEADERS = $(foreach h, $(LIBHEADER), $(XEN_

Re: [PATCH 10/10] tools/libs: Write out an ABI analysis when abi-dumper is available

2021-02-12 Thread Jan Beulich
On 12.02.2021 16:39, Andrew Cooper wrote: > --- a/tools/libs/libs.mk > +++ b/tools/libs/libs.mk > @@ -49,6 +49,8 @@ PKG_CONFIG_LOCAL := $(PKG_CONFIG_DIR)/$(PKG_CONFIG) > LIBHEADER ?= $(LIB_FILE_NAME).h > LIBHEADERS = $(foreach h, $(LIBHEADER), $(XEN_INCLUDE)/$(h)) > > +PKG_ABI := > lib$(LIB_FI

[PATCH 10/10] tools/libs: Write out an ABI analysis when abi-dumper is available

2021-02-12 Thread Andrew Cooper
Signed-off-by: Andrew Cooper --- CC: Ian Jackson CC: Wei Liu CC: Juergen Gross --- tools/libs/libs.mk | 9 + 1 file changed, 9 insertions(+) diff --git a/tools/libs/libs.mk b/tools/libs/libs.mk index ac68996ab2..2a4ce8a90c 100644 --- a/tools/libs/libs.mk +++ b/tools/libs/libs.mk @@ -4