mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 00:20:38 -09:00
qemu now requires gcc >= 7.5, which was the last release in the 7.x
series. We do not have symbols for a gcc dot-version dependency, nor do
we want to add one.
So, add a dependency on gcc >= 8, for both the host and target variants.
In addition:
- Add a missing comment in package/qemu/Config.in.host explaining the
host gcc requirements if host gcc < 8.
Fixes:
http://autobuild.buildroot.org/results/32b7fee1f8cda2290fd4bd8ac9fe78bacb25b652
Signed-off-by: Adam Duskett <aduskett@gmail.com>
[yann.morin.1998@free.fr:
- target qemu also impacted
- propagate to libvirt, gst1-python
- reword commit log that 7.5 is the last 7.x release
]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
27 lines
1.1 KiB
Plaintext
27 lines
1.1 KiB
Plaintext
config BR2_PACKAGE_GST1_PYTHON
|
|
bool "gst1-python"
|
|
depends on BR2_USE_MMU # libglib2, gobject-introspection
|
|
depends on BR2_PACKAGE_GOBJECT_INTROSPECTION_ARCH_SUPPORTS # gobject-introspection
|
|
depends on BR2_HOST_GCC_AT_LEAST_8 # gobject-introspection -> host-qemu
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # gobject-introspection
|
|
depends on BR2_TOOLCHAIN_USES_GLIBC # gobject-introspection
|
|
depends on BR2_PACKAGE_PYTHON3 # gobject-introspection
|
|
select BR2_PACKAGE_GOBJECT_INTROSPECTION
|
|
select BR2_PACKAGE_GST1_PLUGINS_BASE
|
|
select BR2_PACKAGE_LIBGLIB2
|
|
select BR2_PACKAGE_PYTHON_GOBJECT
|
|
help
|
|
GStreamer python overrides for the gobject-introspection-based
|
|
pygst bindings.
|
|
|
|
https://gstreamer.freedesktop.org/modules/gst-python.html
|
|
|
|
comment "gst1-python needs python3"
|
|
depends on !BR2_PACKAGE_PYTHON3
|
|
|
|
comment "gst1-python needs a glibc toolchain, gcc >= 4.9, host gcc >= 8"
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_PACKAGE_GOBJECT_INTROSPECTION_ARCH_SUPPORTS
|
|
depends on !BR2_TOOLCHAIN_USES_GLIBC || \
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 || !BR2_HOST_GCC_AT_LEAST_8
|