From mboxrd@z Thu Jan 1 00:00:00 1970 From: Gleb Mazovetskiy Date: Fri, 25 Dec 2020 12:15:59 +0000 Subject: [Buildroot] [PATCH 1/1] pkg-meson: Force-disable binary stripping Message-ID: <20201225121600.2805074-1-glex.spb@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: buildroot@busybox.net In buildroot, stripping is configured and implemented globally via `BR2_STRIP_strip`. Signed-off-by: Gleb Mazovetskiy --- package/pkg-meson.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package/pkg-meson.mk b/package/pkg-meson.mk index 3a34ba703b..e134885d74 100644 --- a/package/pkg-meson.mk +++ b/package/pkg-meson.mk @@ -87,6 +87,7 @@ define $(2)_CONFIGURE_CMDS --default-library=$(if $(BR2_STATIC_LIBS),static,shared) \ --buildtype=$(if $(BR2_ENABLE_DEBUG),debug,release) \ --cross-file=$$($$(PKG)_SRCDIR)/build/cross-compilation.conf \ + -Dstrip=false \ -Dbuild.pkg_config_path=$$(HOST_DIR)/lib/pkgconfig \ $$($$(PKG)_CONF_OPTS) \ $$($$(PKG)_SRCDIR) $$($$(PKG)_SRCDIR)/build @@ -105,6 +106,7 @@ define $(2)_CONFIGURE_CMDS --localstatedir=$$(HOST_DIR)/var \ --default-library=shared \ --buildtype=release \ + -Dstrip=false \ $$($$(PKG)_CONF_OPTS) \ $$($$(PKG)_SRCDIR) $$($$(PKG)_SRCDIR)/build endef -- 2.27.0