<feed xmlns='http://www.w3.org/2005/Atom'>
<title>staging/noltari/tools/elfutils, branch master</title>
<subtitle>Staging tree of Alvaro Fernandez Rojas</subtitle>
<id>https://git-03.infra.openwrt.org/openwrt/staging/noltari/atom?h=master</id>
<link rel='self' href='https://git-03.infra.openwrt.org/openwrt/staging/noltari/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/openwrt/staging/noltari/'/>
<updated>2022-11-05T14:07:46Z</updated>
<entry>
<title>tools/elfutils: update to 1.88</title>
<updated>2022-11-05T14:07:46Z</updated>
<author>
<name>Nick Hainke</name>
</author>
<published>2022-11-02T15:14:22Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/openwrt/staging/noltari/commit/?id=e0e7e349fa93c8f147e32395d2d20936badf3d5a'/>
<id>urn:sha1:e0e7e349fa93c8f147e32395d2d20936badf3d5a</id>
<content type='text'>
Release Notes:
https://sourceware.org/pipermail/elfutils-devel/2022q4/005561.html

Signed-off-by: Nick Hainke &lt;vincent@systemli.org&gt;
</content>
</entry>
<entry>
<title>tools: add Host/Uninstall where possible</title>
<updated>2022-10-19T22:33:22Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2022-09-28T08:23:56Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/openwrt/staging/noltari/commit/?id=a63805b25f99e609d575ee920baae269fb58794c'/>
<id>urn:sha1:a63805b25f99e609d575ee920baae269fb58794c</id>
<content type='text'>
This cleans staging_dir when calling tool/x/clean.

Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;
</content>
</entry>
<entry>
<title>tools: elfutils: Update to version 0.187</title>
<updated>2022-08-13T12:05:29Z</updated>
<author>
<name>Hauke Mehrtens</name>
</author>
<published>2022-08-07T17:58:19Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/openwrt/staging/noltari/commit/?id=3efe595df9426c2e850e6009da5fb793b776d4e6'/>
<id>urn:sha1:3efe595df9426c2e850e6009da5fb793b776d4e6</id>
<content type='text'>
Update to most recent version of elfutils and sync with version from
package folder.

Signed-off-by: Hauke Mehrtens &lt;hauke@hauke-m.de&gt;
</content>
</entry>
<entry>
<title>tools/elfutils: drop HOST_BUILD_DEPENDS</title>
<updated>2022-05-18T23:37:25Z</updated>
<author>
<name>Stijn Tintel</name>
</author>
<published>2022-05-18T23:28:42Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/openwrt/staging/noltari/commit/?id=6eec1a522518435d78763c3c66881b438cd5fa0e'/>
<id>urn:sha1:6eec1a522518435d78763c3c66881b438cd5fa0e</id>
<content type='text'>
This is only effective for host build of normal packages, not tools.

Fixes: ad79b9271949 ("elfutils: move host build to tools")
Reported-by: Rosen Penev &lt;rosenp@gmail.com&gt;
Signed-off-by: Stijn Tintel &lt;stijn@linux-ipv6.be&gt;
</content>
</entry>
<entry>
<title>tools/elfutils: only build required components</title>
<updated>2022-05-18T23:36:48Z</updated>
<author>
<name>Stijn Tintel</name>
</author>
<published>2022-05-18T22:53:49Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/openwrt/staging/noltari/commit/?id=f64bd4b6cef3b9a57f26928c1b8932534695cb72'/>
<id>urn:sha1:f64bd4b6cef3b9a57f26928c1b8932534695cb72</id>
<content type='text'>
Building all of the components results in strip being installed in
staging_dir/host/bin. This strip binary will take precedence over
binutils strip that is installed in the toolchain directory.

This will not work on host systems that do not have libdw installed, as
we do not set HOST_LDFLAGS to override rpath to staging_dir/host/lib.
However, rather than overriding rpath, we should just avoid using
elfutils strip entirely.

Override the SUBDIRS variable in the Makefile to only build and install
the libraries we require for dwarves and frr.

Fixes the following build failure in toolchain/gdb:
strip: error while loading shared libraries: libdw.so.1: cannot open shared object file: No such file or directory

Fixes: ad79b9271949 ("elfutils: move host build to tools")
Reported-by: Dominick Grift &lt;dominick.grift@defensec.nl&gt;
Reported-by: Lucian Cristian &lt;lucian.cristian@gmail.com&gt;
Signed-off-by: Stijn Tintel &lt;stijn@linux-ipv6.be&gt;
</content>
</entry>
<entry>
<title>elfutils: move host build to tools</title>
<updated>2022-05-18T10:32:06Z</updated>
<author>
<name>Stijn Tintel</name>
</author>
<published>2022-03-28T15:40:30Z</published>
<link rel='alternate' type='text/html' href='https://git-03.infra.openwrt.org/openwrt/staging/noltari/commit/?id=ad79b92719498afa93567cccdfbffeb49a57388d'/>
<id>urn:sha1:ad79b92719498afa93567cccdfbffeb49a57388d</id>
<content type='text'>
The upcoming dwarves host package requires elfutils. As dependencies for
tools must exist in tools, we need to move elfutils host build there.

As there is at least one package that depends on this, and there is no
proper way to create such dependency in the build system, build it
unconditionally when not building on macOS.

Signed-off-by: Stijn Tintel &lt;stijn@linux-ipv6.be&gt;
</content>
</entry>
</feed>
