From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail5.wrs.com (mail5.windriver.com [192.103.53.11]) by mail.openembedded.org (Postfix) with ESMTP id A48DE7DEF4 for ; Tue, 14 May 2019 03:57:49 +0000 (UTC) Received: from ALA-HCA.corp.ad.wrs.com (ala-hca.corp.ad.wrs.com [147.11.189.40]) by mail5.wrs.com (8.15.2/8.15.2) with ESMTPS id x4E3vUSZ005698 (version=TLSv1 cipher=AES128-SHA bits=128 verify=FAIL) for ; Mon, 13 May 2019 20:57:41 -0700 Received: from fidler.wrs.com (172.25.44.4) by ALA-HCA.corp.ad.wrs.com (147.11.189.40) with Microsoft SMTP Server id 14.3.439.0; Mon, 13 May 2019 20:57:19 -0700 From: Randy MacLeod To: Date: Mon, 13 May 2019 23:57:13 -0400 Message-ID: <20190514035716.27376-2-Randy.MacLeod@windriver.com> X-Mailer: git-send-email 2.17.0 In-Reply-To: <20190514035716.27376-1-Randy.MacLeod@windriver.com> References: <20190514035716.27376-1-Randy.MacLeod@windriver.com> MIME-Version: 1.0 Subject: [PATCH 2/5] valgrind: do not strip the package or ptests X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 May 2019 03:57:50 -0000 Content-Type: text/plain About half the ptests will fail if the executables deployed as part of the ptest package are stripped. Currently there is no easy way to only strip the main valgrind package so leave it and the ptests *all* unstripped. There is an enhancement filed to enable wildcard stripping: https://bugzilla.yoctoproject.org/show_bug.cgi?id=13343 so this recipe can be fixed once that is implemented. Signed-off-by: Randy MacLeod --- meta/recipes-devtools/valgrind/valgrind_3.15.0.bb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/meta/recipes-devtools/valgrind/valgrind_3.15.0.bb b/meta/recipes-devtools/valgrind/valgrind_3.15.0.bb index 9749fdb244..b72f4d76ee 100644 --- a/meta/recipes-devtools/valgrind/valgrind_3.15.0.bb +++ b/meta/recipes-devtools/valgrind/valgrind_3.15.0.bb @@ -114,6 +114,10 @@ RDEPENDS_${PN}-ptest_append_libc-glibc = " glibc-utils" # One of the tests contains a bogus interpreter path on purpose. # Skip file dependency check SKIP_FILEDEPS_${PN}-ptest = '1' +# INHIBIT_PACKAGE_STRIP_${PN}-ptest = '1' +# PACKAGE_DEBUG_SPLIT_STYLE_${PN}-ptest = 'debug-file-directory' +INHIBIT_PACKAGE_STRIP = '1' +PACKAGE_DEBUG_SPLIT_STYLE = 'debug-file-directory' do_compile_ptest() { oe_runmake check -- 2.17.0