Gentoo Archives: gentoo-dev

From: David Seifert <soap@g.o>
To: gentoo-dev@l.g.o
Cc: ago@g.o, mattst88@g.o, williamh@g.o, Mike Gilbert <floppym@g.o>
Subject: Re: [gentoo-dev] [PATCH] meson.eclass: export NM and READELF variables
Date: Mon, 20 Apr 2020 15:41:29
Message-Id: b9f9fe2c57d1c393cd2912868968012d7d7f66c1.camel@gentoo.org
In Reply to: [gentoo-dev] [PATCH] meson.eclass: export NM and READELF variables by Mike Gilbert
1 On Mon, 2020-04-20 at 11:18 -0400, Mike Gilbert wrote:
2 > These are used by the symbolextractor.py script in meson.
3 >
4 > Closes: https://bugs.gentoo.org/717720
5 > Signed-off-by: Mike Gilbert <floppym@g.o>
6 > ---
7 > eclass/meson.eclass | 5 +++++
8 > 1 file changed, 5 insertions(+)
9 >
10 > diff --git a/eclass/meson.eclass b/eclass/meson.eclass
11 > index 2bd1dc017609..81cfa7c38fc6 100644
12 > --- a/eclass/meson.eclass
13 > +++ b/eclass/meson.eclass
14 > @@ -261,6 +261,11 @@ meson_src_configure() {
15 > "${BUILD_DIR}"
16 > )
17 >
18 > + # Used by symbolextractor.py
19 > + # https://bugs.gentoo.org/717720
20 > + tc-export NM
21 > + tc-getPROG READELF readelf >/dev/null
22 > +
23 > # https://bugs.gentoo.org/625396
24 > python_export_utf8_locale
25 >
26
27 +1
28 Thanks for adding this, LGTM.