* [Buildroot] [PATCH 1/1] package/dhcp: disable backtrace on internal bind
@ 2022-04-18 22:20 Fabrice Fontaine
2022-04-21 19:36 ` Yann E. MORIN
2022-05-24 8:20 ` Peter Korsgaard
0 siblings, 2 replies; 3+ messages in thread
From: Fabrice Fontaine @ 2022-04-18 22:20 UTC (permalink / raw)
To: buildroot; +Cc: Fabrice Fontaine
Disable backtrace on internal bind to avoid the following build failure
since commit 0c8dd6ebd656e06cf99a63eb93343715f4853503:
/nvmedata/autobuild/instance-15/output-1/host/lib/gcc/armeb-buildroot-linux-uclibcgnueabi/10.3.0/../../../../armeb-buildroot-linux-uclibcgnueabi/bin/ld: /nvmedata/autobuild/instance-15/output-1/build/dhcp-4.4.3/bind/bind-9.11.36/lib/isc/.libs/libisc.so: undefined reference to `_Unwind_GetIP'
Fixes:
- http://autobuild.buildroot.org/results/074786f3f1e7ffc858dcb1de1855ee138793869e
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
package/dhcp/dhcp.mk | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/package/dhcp/dhcp.mk b/package/dhcp/dhcp.mk
index 6ac9ed0147..e6f4c419f4 100644
--- a/package/dhcp/dhcp.mk
+++ b/package/dhcp/dhcp.mk
@@ -29,7 +29,8 @@ DHCP_BIND_EXTRA_CONFIG = \
BUILD_CFLAGS='$(HOST_CFLAGS)' \
BUILD_CPPFLAGS='$(HOST_CPPFLAGS)' \
BUILD_LDFLAGS='$(HOST_LDFLAGS)' \
- RANLIB='$(TARGET_RANLIB)'
+ RANLIB='$(TARGET_RANLIB)' \
+ --disable-backtrace
DHCP_CONF_ENV += ac_cv_prog_AWK=$(HOST_DIR)/bin/gawk
--
2.35.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [Buildroot] [PATCH 1/1] package/dhcp: disable backtrace on internal bind
2022-04-18 22:20 [Buildroot] [PATCH 1/1] package/dhcp: disable backtrace on internal bind Fabrice Fontaine
@ 2022-04-21 19:36 ` Yann E. MORIN
2022-05-24 8:20 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Yann E. MORIN @ 2022-04-21 19:36 UTC (permalink / raw)
To: Fabrice Fontaine; +Cc: buildroot
Fabrice, All,
On 2022-04-19 00:20 +0200, Fabrice Fontaine spake thusly:
> Disable backtrace on internal bind to avoid the following build failure
> since commit 0c8dd6ebd656e06cf99a63eb93343715f4853503:
I've expanded that part to also reference commit 700674b45c86
(package/bind: disable backtrace support) where the same was done to the
official bind.
> /nvmedata/autobuild/instance-15/output-1/host/lib/gcc/armeb-buildroot-linux-uclibcgnueabi/10.3.0/../../../../armeb-buildroot-linux-uclibcgnueabi/bin/ld: /nvmedata/autobuild/instance-15/output-1/build/dhcp-4.4.3/bind/bind-9.11.36/lib/isc/.libs/libisc.so: undefined reference to `_Unwind_GetIP'
>
> Fixes:
> - http://autobuild.buildroot.org/results/074786f3f1e7ffc858dcb1de1855ee138793869e
>
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Applied to master, thanks.
Regards,
Yann E. MORIN.
> ---
> package/dhcp/dhcp.mk | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/package/dhcp/dhcp.mk b/package/dhcp/dhcp.mk
> index 6ac9ed0147..e6f4c419f4 100644
> --- a/package/dhcp/dhcp.mk
> +++ b/package/dhcp/dhcp.mk
> @@ -29,7 +29,8 @@ DHCP_BIND_EXTRA_CONFIG = \
> BUILD_CFLAGS='$(HOST_CFLAGS)' \
> BUILD_CPPFLAGS='$(HOST_CPPFLAGS)' \
> BUILD_LDFLAGS='$(HOST_LDFLAGS)' \
> - RANLIB='$(TARGET_RANLIB)'
> + RANLIB='$(TARGET_RANLIB)' \
> + --disable-backtrace
>
> DHCP_CONF_ENV += ac_cv_prog_AWK=$(HOST_DIR)/bin/gawk
>
> --
> 2.35.1
>
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 561 099 427 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [Buildroot] [PATCH 1/1] package/dhcp: disable backtrace on internal bind
2022-04-18 22:20 [Buildroot] [PATCH 1/1] package/dhcp: disable backtrace on internal bind Fabrice Fontaine
2022-04-21 19:36 ` Yann E. MORIN
@ 2022-05-24 8:20 ` Peter Korsgaard
1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2022-05-24 8:20 UTC (permalink / raw)
To: Fabrice Fontaine; +Cc: buildroot
>>>>> "Fabrice" == Fabrice Fontaine <fontaine.fabrice@gmail.com> writes:
> Disable backtrace on internal bind to avoid the following build failure
> since commit 0c8dd6ebd656e06cf99a63eb93343715f4853503:
> /nvmedata/autobuild/instance-15/output-1/host/lib/gcc/armeb-buildroot-linux-uclibcgnueabi/10.3.0/../../../../armeb-buildroot-linux-uclibcgnueabi/bin/ld:
> /nvmedata/autobuild/instance-15/output-1/build/dhcp-4.4.3/bind/bind-9.11.36/lib/isc/.libs/libisc.so:
> undefined reference to `_Unwind_GetIP'
> Fixes:
> - http://autobuild.buildroot.org/results/074786f3f1e7ffc858dcb1de1855ee138793869e
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Committed to 2022.02.x, thanks.
--
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-05-24 8:20 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-04-18 22:20 [Buildroot] [PATCH 1/1] package/dhcp: disable backtrace on internal bind Fabrice Fontaine
2022-04-21 19:36 ` Yann E. MORIN
2022-05-24 8:20 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox