mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-19 16:40:46 -09:00
Require C++20, drop dependency on boost, require new minimum versions for tools and libraries: package mpd-0.24 buildroot gcc 12 12.4.0 meson 1.0 1.7.0 alsa-lib 1.1 1.2.13 ffmpeg 4.0 6.1.2 libfmt 9 11.0.2 libmpdclient 2.15 2.22 libnfs 4.0 5.0.3 libsoxr 0.1.2 0.1.3 The GenParseName tool compiled and run on the build machine now needs host-gcc 10, because the parsed structure uses constexpr (P1143R2). [1][2] Due to the introduction of openat2 system calls (available since Linux kernel 5.6), MPD now has a minimum kernel header requirement. [3][4] Release note: https://musicpd.org/news/2025/03/mpd-0-24-released/ Change log: https://raw.githubusercontent.com/MusicPlayerDaemon/MPD/v0.24/NEWS $ utils/check-package package/mpd/* 919 lines processed 0 warnings generated $ gcc --version gcc (Ubuntu 10.5.0-4ubuntu2) 10.5.0 $ mkdir ~/output $ echo "BR2_PACKAGE_MPD=y" > ~/output/mpd.config $ utils/test-pkg -a -c ~/output/mpd.config -d ~/output -p mpd arm-aarch64 [ 1/40]: SKIPPED bootlin-aarch64-glibc [ 2/40]: SKIPPED bootlin-arcle-hs38-uclibc [ 3/40]: SKIPPED bootlin-armv5-uclibc [ 4/40]: SKIPPED bootlin-armv7-glibc [ 5/40]: OK bootlin-armv7m-uclibc [ 6/40]: SKIPPED bootlin-armv7-musl [ 7/40]: SKIPPED bootlin-m68k-5208-uclibc [ 8/40]: SKIPPED bootlin-m68k-68040-uclibc [ 9/40]: SKIPPED bootlin-microblazeel-uclibc [10/40]: SKIPPED bootlin-mipsel32r6-glibc [11/40]: SKIPPED bootlin-mipsel-uclibc [12/40]: SKIPPED bootlin-openrisc-uclibc [13/40]: SKIPPED bootlin-powerpc64le-power8-glibc [14/40]: SKIPPED bootlin-powerpc-e500mc-uclibc [15/40]: SKIPPED bootlin-riscv32-glibc [16/40]: OK bootlin-riscv64-glibc [17/40]: OK bootlin-riscv64-musl [18/40]: SKIPPED bootlin-s390x-z13-glibc [19/40]: OK bootlin-sh4-uclibc [20/40]: SKIPPED bootlin-sparc64-glibc [21/40]: SKIPPED bootlin-sparc-uclibc [22/40]: SKIPPED bootlin-x86-64-glibc [23/40]: OK bootlin-x86-64-musl [24/40]: SKIPPED bootlin-x86-64-uclibc [25/40]: SKIPPED bootlin-x86-i686-musl [26/40]: SKIPPED bootlin-xtensa-uclibc [27/40]: SKIPPED br-arm-basic [28/40]: SKIPPED br-arm-full-nothread [29/40]: SKIPPED br-arm-full-static [30/40]: SKIPPED br-i386-pentium4-full [31/40]: SKIPPED br-mips64-n64-full [32/40]: SKIPPED br-mips64r6-el-hf-glibc [33/40]: SKIPPED br-powerpc-603e-basic-cpp [34/40]: SKIPPED br-powerpc64-power7-glibc [35/40]: SKIPPED linaro-aarch64-be [36/40]: SKIPPED linaro-aarch64 [37/40]: SKIPPED linaro-arm [38/40]: SKIPPED sourcery-mips64 [39/40]: SKIPPED sourcery-mips [40/40]: SKIPPED 40 builds, 35 skipped, 0 build failed, 0 legal-info failed, 0 show-info failed [1] https://github.com/MusicPlayerDaemon/MPD/blob/master/src/tag/Names.cxx#L9 [2] https://gcc.gnu.org/projects/cxx-status.html#cxx20 [3] https://github.com/MusicPlayerDaemon/MPD/commit/dda85e0 [4] https://man7.org/linux/man-pages/man2/openat2.2.html Signed-off-by: Andreas Ziegler <br015@umbiko.net> Signed-off-by: Julien Olivain <ju.o@free.fr>
46 lines
1.5 KiB
Diff
46 lines
1.5 KiB
Diff
From cb190801706da046823c74f89472af83ff947ce1 Mon Sep 17 00:00:00 2001
|
|
From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
|
Date: Sat, 17 Aug 2019 22:25:06 +0200
|
|
Subject: [PATCH] src/event/meson.build: add atomic dependency for sparc
|
|
|
|
Linking with libatomic is needed on sparc otherwise build fails on:
|
|
/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'
|
|
|
|
Fixes:
|
|
- http://autobuild.buildroot.org/results/7a9fdb7e323892fb6ed85a2441054303e889c089
|
|
|
|
Upstream: not sent (the same kind of patch for ncmpc was
|
|
refused: https://github.com/MusicPlayerDaemon/ncmpc/pull/45)
|
|
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
|
|
[Andreas: adapt upstream formatting]
|
|
Signed-off-by: Andreas Ziegler <br015@umbiko.net>
|
|
---
|
|
Rebase for mpd-0.24
|
|
|
|
Signed-off-by: Andreas Ziegler <br015@umbiko.net>
|
|
---
|
|
src/event/meson.build | 4 ++++
|
|
1 file changed, 4 insertions(+)
|
|
|
|
diff --git a/src/event/meson.build b/src/event/meson.build
|
|
index bc13bbcd2..88370c03a 100644
|
|
--- a/src/event/meson.build
|
|
+++ b/src/event/meson.build
|
|
@@ -46,9 +46,13 @@
|
|
],
|
|
)
|
|
|
|
+# Needed on sparc
|
|
+atomic_dep = c_compiler.find_library('atomic', required: false)
|
|
+
|
|
event_dep = declare_dependency(
|
|
link_with: event,
|
|
dependencies: [
|
|
+ atomic_dep,
|
|
thread_dep,
|
|
net_dep,
|
|
system_dep,
|
|
--
|
|
2.20.1
|
|
|