1config BR2_PACKAGE_PYTHON_GOBJECT 2 bool "python-gobject" 3 depends on BR2_USE_MMU # libglib2, gobject-introspection 4 depends on BR2_PACKAGE_GOBJECT_INTROSPECTION_ARCH_SUPPORTS # gobject-introspection 5 depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # gobject-introspection 6 depends on BR2_HOST_GCC_AT_LEAST_8 # gobject-introspection -> host-qemu 7 depends on BR2_TOOLCHAIN_USES_GLIBC # gobject-introspection 8 depends on BR2_PACKAGE_PYTHON3 # gobject-introspection 9 select BR2_PACKAGE_GOBJECT_INTROSPECTION 10 select BR2_PACKAGE_LIBGLIB2 11 help 12 Python bindings for the GLib/GObject library 13 14 https://wiki.gnome.org/action/show/Projects/PyGObject 15 16comment "python-gobject needs a glibc toolchain, gcc >= 4.9, host gcc >= 8" 17 depends on BR2_USE_MMU 18 depends on BR2_PACKAGE_GOBJECT_INTROSPECTION_ARCH_SUPPORTS 19 depends on !BR2_TOOLCHAIN_USES_GLIBC || \ 20 !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 || \ 21 !BR2_HOST_GCC_AT_LEAST_8 22