Merge branch 'elfutils' into 'master'

Port elfutils

See merge request redox-os/redox!1949
This commit is contained in:
Jeremy Soller 2026-02-27 09:52:23 -07:00
commit 700101f28b
4 changed files with 34 additions and 1 deletions

View File

@ -0,0 +1,5 @@
[source]
git = "https://github.com/argp-standalone/argp-standalone"
[build]
template = "meson"

View File

@ -1,5 +1,17 @@
#TODO compilation error
# Compiled, not tested
[source]
tar = "https://sourceware.org/elfutils/ftp/0.190/elfutils-0.190.tar.bz2"
[build]
template = "configure"
dependencies = [
"zlib",
"argp-standalone",
"musl-fts",
"musl-obstack",
# "gettext",
]
configureflags = [
"--disable-libdebuginfod",
"--disable-debuginfod",
]

View File

@ -0,0 +1,8 @@
[source]
git = "https://github.com/void-linux/musl-fts"
script = """
./bootstrap.sh
"""
[build]
template = "configure"

View File

@ -0,0 +1,8 @@
[source]
git = "https://github.com/void-linux/musl-obstack"
script = """
./bootstrap.sh
"""
[build]
template = "configure"