Package Details: mingw-w64-libbacktrace-git r56.dedbe13-1

Git Clone URL: https://aur.archlinux.org/mingw-w64-libbacktrace-git.git (read-only, click to copy)
Package Base: mingw-w64-libbacktrace-git
Description: Library to produce symbolic backtraces (mingw-w64)
Upstream URL: https://github.com/ianlancetaylor/libbacktrace
Licenses: BSD
Conflicts: mingw-w64-libbacktrace
Provides: mingw-w64-libbacktrace
Submitter: xantares
Maintainer: xantares
Last Packager: xantares
Votes: 2
Popularity: 0.000000
First Submitted: 2019-11-29 10:11 (UTC)
Last Updated: 2021-02-09 17:01 (UTC)

Latest Comments

akstrfn commented on 2021-02-09 13:52 (UTC)

Patch needs to be changed to 2.71.

andrewkoz commented on 2021-01-04 21:09 (UTC)

To get it to build configure.ac needs to be patched to use autoconf 2.70 - the current version - (it expects 2.69)

1337_d00dZ commented on 2020-04-12 18:52 (UTC)

Makefile.am hotpatch was not corrected for latest master, the following patch fixes the issue.

diff --git a/PKGBUILD b/PKGBUILD
index bc2cb3e..59979e5 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,6 +1,6 @@
 pkgname=mingw-w64-libbacktrace-git
-pkgver=r21.5a99ff7
-pkgrel=2
+pkgver=r30.ca0de05
+pkgrel=1
 pkgdesc="Library to produce symbolic backtraces (mingw-w64)"
 arch=('any')
 url="https://github.com/ianlancetaylor/libbacktrace"
@@ -24,7 +24,7 @@ prepare () {
   cd "libbacktrace"
   curl -L https://github.com/ianlancetaylor/libbacktrace/pull/28.patch | patch -p1
   # dont allow undefined symbols to build the dll
-  sed -i "83ilibbacktrace_la_LDFLAGS = -no-undefined" Makefile.am
+  sed -i "87ilibbacktrace_la_LDFLAGS = -no-undefined" Makefile.am
   # unknown macro AM_ENABLE_MULTILIB
   sed -i "s|AM_ENABLE_MULTILIB(, ..)|AC_MSG_NOTICE(["hello"])|g" configure.ac
   autoreconf -vfi