Andrew Geissler | 6972109 | 2021-07-23 12:57:00 -0400 | [diff] [blame] | 1 | From bc9c5d64ad4829c7830ef70fcaff94470974247c Mon Sep 17 00:00:00 2001 |
| 2 | From: Yi Zhao <yi.zhao@windriver.com> |
| 3 | Date: Tue, 8 Jun 2021 10:13:57 +0800 |
| 4 | Subject: [PATCH] bind/Makefile.in: disable backtrace |
| 5 | |
| 6 | Fixes build error for qemuarm on musl: |
| 7 | libisc.so: undefined reference to `_Unwind_GetIP' |
| 8 | |
| 9 | Upstream-Status: Inappropriate [embedded specific] |
| 10 | |
| 11 | Signed-off-by: Yi Zhao <yi.zhao@windriver.com> |
| 12 | --- |
| 13 | bind/Makefile.in | 2 +- |
| 14 | 1 file changed, 1 insertion(+), 1 deletion(-) |
| 15 | |
| 16 | diff --git a/bind/Makefile.in b/bind/Makefile.in |
| 17 | index 8fe8883..1058160 100644 |
| 18 | --- a/bind/Makefile.in |
| 19 | +++ b/bind/Makefile.in |
| 20 | @@ -22,7 +22,7 @@ prefix = @prefix@ |
| 21 | exec_prefix = @exec_prefix@ |
| 22 | |
| 23 | bindconfig = --without-openssl --without-libxml2 --without-libjson \ |
| 24 | - --without-gssapi --disable-threads --without-lmdb \ |
| 25 | + --without-gssapi --disable-threads --without-lmdb --disable-backtrace \ |
| 26 | --includedir=@includedir@ --libdir=@libdir@ --without-python\ |
| 27 | @BINDLT@ @BINDIOMUX@ @BINDCONFIG@ --enable-full-report |
| 28 | |
| 29 | -- |
| 30 | 2.17.1 |
| 31 | |