From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from box.diamand.org.uk (box.diamand.org.uk [IPv6:2a01:7e00::f03c:93ff:fe83:8e4a]) by sourceware.org (Postfix) with ESMTPS id BDBCF3858D3C for ; Sun, 24 Dec 2023 10:19:45 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org BDBCF3858D3C Authentication-Results: sourceware.org; dmarc=pass (p=quarantine dis=none) header.from=diamand.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=diamand.org ARC-Filter: OpenARC Filter v1.0.0 sourceware.org BDBCF3858D3C Authentication-Results: server2.sourceware.org; arc=none smtp.remote-ip=2a01:7e00::f03c:93ff:fe83:8e4a ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1703413189; cv=none; b=OJTnUSNZX1VeRrQbCBgyN2bgOArnWP2/FgK/HdNNqNzNPtziMJBgIwKHIIsX1rO1UsXPr85hlocQ8M86B7bwi9LXbCgEqpy055bn6bL6wlrhDu58F0xdqC3Jl4Uk5WsYNHfPlbAKDgBRf6LquyOaKWqPHqf8Qrw8DOSe6QtN+WA= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1703413189; c=relaxed/simple; bh=H/+lgEVAJdaN/Di1gjzbFzmXsvJ9CfQCuEDHbFd2d/4=; h=DKIM-Signature:MIME-Version:Date:From:To:Subject:Message-ID; b=TxB7+Dl/Ed20cOWkfaGMu03rA+JVXcpuuUlXCDYiDDoFxFSRrLQLnjsjNnVJMB6eZz2ol4q5kbW5AOsvRFDvhA3VmVZZCUvoYCxhlDo18aSIMCnv67qa611WUR0qFJtf4M6zvIwmWqkNGIVtq4gsG/3zsUZXLXYNYpFZ+Gzuh34= ARC-Authentication-Results: i=1; server2.sourceware.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=diamand.org; s=mail; t=1703413184; bh=H/+lgEVAJdaN/Di1gjzbFzmXsvJ9CfQCuEDHbFd2d/4=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=FGFCb3Ot+edoFfnQNSsc1K6Ju8+Dwutl5x1uhHTOMmZn40t5ynpvPL1DCG5TJPgdB aYRMgTRCFTOnhrv00w4gw+5blOz64KHaPseLAYJwRfFKZXYvxdpV2UGxkWNil4zTlU 0jRtyK4zwAic2Kq1CLGZKsRBPvSHGdfgLmzSyV+9wmkStxLOaj77c/uQNyP605YYJY NjnnP1L/meF5XIVaZmE6a5jGOxJIf98Z/3XjkxVVlvdkA5rgOCIBLOhUPA+q+NbpHB 2em6VnLNEy2BGFE0aLHdQUFCWukAgdPghHFRq0T3yNhhjM5qdpv60UikKh8MSK4RI/ gVumFRkw1NF9Q== Received: from authenticated-user (box.diamand.org.uk [178.79.134.252]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by box.diamand.org.uk (Postfix) with ESMTPSA id 03E742053C; Sun, 24 Dec 2023 10:19:43 +0000 (GMT) MIME-Version: 1.0 Date: Sun, 24 Dec 2023 10:19:43 +0000 From: Luke Diamand To: taehee Park Cc: elfutils-devel@sourceware.org Subject: Re: Openwrt porting In-Reply-To: References: Message-ID: X-Sender: luke@diamand.org Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=4.7 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,RCVD_IN_ABUSEAT,RCVD_IN_SBL_CSS,RCVD_IN_XBL,SPF_HELO_PASS,SPF_PASS,TXREP,T_SCC_BODY_TEXT_LINE autolearn=no autolearn_force=no version=3.4.6 X-Spam-Level: **** X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: On 2023-12-24 07:12, taehee Park wrote: > I think elfutils is very useful in debugging. > But i cant use this in openwrt package. > Because only library is built and utility like eu-stack or eu-readelf > not built > Could someone help thus? I don't know anything about openwrt, but quickly looking at the source code, it has a patch to suppress building the binaries which does this: package/libs/elfutils/patches/005-build_only_libs.patch: SUBDIRS = config lib libelf libcpu backends libebl libdwelf libdwfl libdw \ - libasm debuginfod src po doc tests + libasm You could try removing that patch, and then updating the install stanza to also include the binaries: https://github.com/openwrt/openwrt/blob/3e738781a9712eaa81d5af0ecc8b55cbfe480c68/package/libs/elfutils/Makefile#L95