0001-src-event-meson.build-add-atomic-dependency-for-spar.patch 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. From cb190801706da046823c74f89472af83ff947ce1 Mon Sep 17 00:00:00 2001
  2. From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
  3. Date: Sat, 17 Aug 2019 22:25:06 +0200
  4. Subject: [PATCH] src/event/meson.build: add atomic dependency for sparc
  5. Linking with libatomic is needed on sparc otherwise build fails on:
  6. /usr/lfs/v0/rc-buildroot-test/scripts/instance-0/output/host/opt/ext-toolchain/bin/../lib/gcc/sparc-buildroot-linux-uclibc/7.4.0/../../../../sparc-buildroot-linux-uclibc/bin/ld: src/event/libevent.a(MaskMonitor.cxx.o): undefined reference to symbol '__atomic_fetch_or_4@@LIBATOMIC_1.0'
  7. Fixes:
  8. - http://autobuild.buildroot.org/results/7a9fdb7e323892fb6ed85a2441054303e889c089
  9. Upstream: not sent (the same kind of patch for ncmpc was
  10. refused: https://github.com/MusicPlayerDaemon/ncmpc/pull/45)
  11. Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
  12. [Andreas: adapt upstream formatting]
  13. Signed-off-by: Andreas Ziegler <br015@umbiko.net>
  14. ---
  15. Rebase for mpd-0.24
  16. Signed-off-by: Andreas Ziegler <br015@umbiko.net>
  17. ---
  18. src/event/meson.build | 4 ++++
  19. 1 file changed, 4 insertions(+)
  20. diff --git a/src/event/meson.build b/src/event/meson.build
  21. index bc13bbcd2..88370c03a 100644
  22. --- a/src/event/meson.build
  23. +++ b/src/event/meson.build
  24. @@ -46,9 +46,13 @@
  25. ],
  26. )
  27. +# Needed on sparc
  28. +atomic_dep = c_compiler.find_library('atomic', required: false)
  29. +
  30. event_dep = declare_dependency(
  31. link_with: event,
  32. dependencies: [
  33. + atomic_dep,
  34. thread_dep,
  35. net_dep,
  36. system_dep,
  37. --
  38. 2.20.1