All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/qpdf: needs atomic
@ 2022-01-04 21:07 Fabrice Fontaine
  2022-01-07 21:08 ` Thomas Petazzoni
  0 siblings, 1 reply; 4+ messages in thread
From: Fabrice Fontaine @ 2022-01-04 21:07 UTC (permalink / raw)
  To: buildroot; +Cc: Olivier Schonken, Angelo Compagnucci, Fabrice Fontaine

qpdf needs atomic since bump to version 10.5.0 in commit
b5352c2177011ca389cbb7c68e78447549cbdaaa and
https://github.com/qpdf/qpdf/commit/c5c1a028cdd3cf345046c46963fb0fdacfb2c33c:

/home/buildroot/autobuild/instance-2/output-1/host/opt/ext-toolchain/m68k-buildroot-uclinux-uclibc/bin/ld.real: /home/buildroot/autobuild/instance-2/output-1/build/qpdf-10.5.0/libqpdf/build/.libs/libqpdf.a(QPDF.o): in function `QPDF::QPDF()':
QPDF.cc:(.text+0x48de): undefined reference to `__atomic_fetch_add_8'

Fixes:
 - http://autobuild.buildroot.org/results/7e18689670dcbe491c35f0597e5c3c787936263f

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
---
 package/cups-filters/Config.in | 2 ++
 package/qpdf/Config.in         | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/package/cups-filters/Config.in b/package/cups-filters/Config.in
index 32381e6c1f..ded99a4774 100644
--- a/package/cups-filters/Config.in
+++ b/package/cups-filters/Config.in
@@ -8,6 +8,7 @@ config BR2_PACKAGE_CUPS_FILTERS
 	depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
 	depends on BR2_PACKAGE_CUPS
 	depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5 # qpdf
+	depends on BR2_TOOLCHAIN_HAS_ATOMIC # qpdf
 	select BR2_PACKAGE_JPEG
 	select BR2_PACKAGE_FONTCONFIG
 	select BR2_PACKAGE_FREETYPE
@@ -33,6 +34,7 @@ config BR2_PACKAGE_CUPS_FILTERS
 
 comment "cups-filters needs a toolchain w/ wchar, C++, threads and dynamic library, gcc >= 5"
 	depends on BR2_USE_MMU
+	depends on BR2_TOOLCHAIN_HAS_ATOMIC
 	depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \
 		!BR2_USE_WCHAR || BR2_STATIC_LIBS || \
 		!BR2_TOOLCHAIN_GCC_AT_LEAST_5
diff --git a/package/qpdf/Config.in b/package/qpdf/Config.in
index 047c4c8a75..accf2b5f34 100644
--- a/package/qpdf/Config.in
+++ b/package/qpdf/Config.in
@@ -2,6 +2,7 @@ config BR2_PACKAGE_QPDF
 	bool "qpdf"
 	depends on BR2_INSTALL_LIBSTDCPP
 	depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5 # C++14
+	depends on BR2_TOOLCHAIN_HAS_ATOMIC
 	select BR2_PACKAGE_ZLIB
 	select BR2_PACKAGE_JPEG
 	select BR2_PACKAGE_LIBOPENSSL_ENABLE_RC4 if BR2_PACKAGE_LIBOPENSSL
@@ -16,5 +17,6 @@ config BR2_PACKAGE_QPDF
 	  http://qpdf.sourceforge.net/
 
 comment "qpdf needs a toolchain w/ C++, gcc >= 5"
+	depends on BR2_TOOLCHAIN_HAS_ATOMIC
 	depends on !BR2_INSTALL_LIBSTDCPP || \
 		!BR2_TOOLCHAIN_GCC_AT_LEAST_5
-- 
2.34.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [Buildroot] [PATCH 1/1] package/qpdf: needs atomic
  2022-01-04 21:07 [Buildroot] [PATCH 1/1] package/qpdf: needs atomic Fabrice Fontaine
@ 2022-01-07 21:08 ` Thomas Petazzoni
  2022-01-07 21:16   ` Fabrice Fontaine
  0 siblings, 1 reply; 4+ messages in thread
From: Thomas Petazzoni @ 2022-01-07 21:08 UTC (permalink / raw)
  To: Fabrice Fontaine; +Cc: Olivier Schonken, Angelo Compagnucci, buildroot

On Tue,  4 Jan 2022 22:07:27 +0100
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:

> qpdf needs atomic since bump to version 10.5.0 in commit
> b5352c2177011ca389cbb7c68e78447549cbdaaa and
> https://github.com/qpdf/qpdf/commit/c5c1a028cdd3cf345046c46963fb0fdacfb2c33c:
> 
> /home/buildroot/autobuild/instance-2/output-1/host/opt/ext-toolchain/m68k-buildroot-uclinux-uclibc/bin/ld.real: /home/buildroot/autobuild/instance-2/output-1/build/qpdf-10.5.0/libqpdf/build/.libs/libqpdf.a(QPDF.o): in function `QPDF::QPDF()':
> QPDF.cc:(.text+0x48de): undefined reference to `__atomic_fetch_add_8'
> 
> Fixes:
>  - http://autobuild.buildroot.org/results/7e18689670dcbe491c35f0597e5c3c787936263f
> 
> Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ---
>  package/cups-filters/Config.in | 2 ++
>  package/qpdf/Config.in         | 2 ++
>  2 files changed, 4 insertions(+)

Applied to master, thanks. However, could you do a test build on
sparcv8 ? Indeed normally when something needs atomic, it also needs to
link with libatomic when available, as some architectures (such as
sparcv8) have all atomic built-ins implemented in libatomic.

Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Buildroot] [PATCH 1/1] package/qpdf: needs atomic
  2022-01-07 21:08 ` Thomas Petazzoni
@ 2022-01-07 21:16   ` Fabrice Fontaine
  2022-01-07 21:50     ` Thomas Petazzoni
  0 siblings, 1 reply; 4+ messages in thread
From: Fabrice Fontaine @ 2022-01-07 21:16 UTC (permalink / raw)
  To: Thomas Petazzoni
  Cc: Olivier Schonken, Angelo Compagnucci, Buildroot Mailing List

Le ven. 7 janv. 2022 à 22:08, Thomas Petazzoni
<thomas.petazzoni@bootlin.com> a écrit :
>
> On Tue,  4 Jan 2022 22:07:27 +0100
> Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:
>
> > qpdf needs atomic since bump to version 10.5.0 in commit
> > b5352c2177011ca389cbb7c68e78447549cbdaaa and
> > https://github.com/qpdf/qpdf/commit/c5c1a028cdd3cf345046c46963fb0fdacfb2c33c:
> >
> > /home/buildroot/autobuild/instance-2/output-1/host/opt/ext-toolchain/m68k-buildroot-uclinux-uclibc/bin/ld.real: /home/buildroot/autobuild/instance-2/output-1/build/qpdf-10.5.0/libqpdf/build/.libs/libqpdf.a(QPDF.o): in function `QPDF::QPDF()':
> > QPDF.cc:(.text+0x48de): undefined reference to `__atomic_fetch_add_8'
> >
> > Fixes:
> >  - http://autobuild.buildroot.org/results/7e18689670dcbe491c35f0597e5c3c787936263f
> >
> > Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> > ---
> >  package/cups-filters/Config.in | 2 ++
> >  package/qpdf/Config.in         | 2 ++
> >  2 files changed, 4 insertions(+)
>
> Applied to master, thanks. However, could you do a test build on
> sparcv8 ? Indeed normally when something needs atomic, it also needs to
> link with libatomic when available, as some architectures (such as
> sparcv8) have all atomic built-ins implemented in libatomic.
qpdf handles linking with atomic since version 10.0.2 and
https://github.com/qpdf/qpdf/commit/66198f447f45a87718b6457756976baa8defb2fd
>
> Thanks!
>
> Thomas
> --
> Thomas Petazzoni, CTO, Bootlin
> Embedded Linux and Kernel engineering
> https://bootlin.com
Best Regards,

Fabrice
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Buildroot] [PATCH 1/1] package/qpdf: needs atomic
  2022-01-07 21:16   ` Fabrice Fontaine
@ 2022-01-07 21:50     ` Thomas Petazzoni
  0 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2022-01-07 21:50 UTC (permalink / raw)
  To: Fabrice Fontaine
  Cc: Olivier Schonken, Angelo Compagnucci, Buildroot Mailing List

On Fri, 7 Jan 2022 22:16:26 +0100
Fabrice Fontaine <fontaine.fabrice@gmail.com> wrote:

> qpdf handles linking with atomic since version 10.0.2 and
> https://github.com/qpdf/qpdf/commit/66198f447f45a87718b6457756976baa8defb2fd

Excellent, thanks for confirming!

Thomas
-- 
Thomas Petazzoni, co-owner and CEO, Bootlin
Embedded Linux and Kernel engineering and training
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-01-07 21:50 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-04 21:07 [Buildroot] [PATCH 1/1] package/qpdf: needs atomic Fabrice Fontaine
2022-01-07 21:08 ` Thomas Petazzoni
2022-01-07 21:16   ` Fabrice Fontaine
2022-01-07 21:50     ` Thomas Petazzoni

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.