aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimo Teräs <timo.teras@iki.fi>2020-04-12 14:04:34 +0300
committerTimo Teräs <timo.teras@iki.fi>2020-04-12 14:06:04 +0300
commitb35ce936c6eec939d414b11502c01948a999d00a (patch)
treed71b1196a43cceb2cee19155e7354b545f43fb6b
parenta53f6139de57b399f63f8e07338e5f52a5d8fe0c (diff)
downloadaports-b35ce936c6eec939d414b11502c01948a999d00a.tar.bz2
aports-b35ce936c6eec939d414b11502c01948a999d00a.tar.xz
main/musl: add --enable-debug for assembly unwind info
Add --enable-debug configure option. It enables -g which was already set by abuild since -dbg is there. But more importantly this will enable CFI unwind info for assembly sources, so this makes the unwind info in -dbg package complete.
-rw-r--r--main/musl/APKBUILD5
1 files changed, 3 insertions, 2 deletions
diff --git a/main/musl/APKBUILD b/main/musl/APKBUILD
index 1f8b4555c3..8ebbfa9991 100644
--- a/main/musl/APKBUILD
+++ b/main/musl/APKBUILD
@@ -2,7 +2,7 @@
# Maintainer: Timo Teräs <timo.teras@iki.fi>
pkgname=musl
pkgver=1.1.24
-pkgrel=5
+pkgrel=6
pkgdesc="the musl c library (libc) implementation"
url="https://musl.libc.org/"
arch="all"
@@ -72,7 +72,8 @@ build() {
--sysconfdir=/etc \
--mandir=/usr/share/man \
--infodir=/usr/share/info \
- --localstatedir=/var
+ --localstatedir=/var \
+ --enable-debug
make
}