a0c0ed2cf9
Like for Qt GUI module, disable for niosII to avoid a toolchain issue [1][2]. [1] http://lists.busybox.net/pipermail/buildroot/2015-December/148428.html [2] https://sourceware.org/bugzilla/show_bug.cgi?id=19405 Avoid: http://autobuild.buildroot.net/results/3e2/3e2ad2de03b5e9f181332d06dcf860e51fcd47f8/ Signed-off-by: Romain Naour <romain.naour@openwide.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
30 lines
1.1 KiB
Plaintext
30 lines
1.1 KiB
Plaintext
config BR2_PACKAGE_GTKMM3
|
|
bool "gtkmm3"
|
|
# Broken on existing external/internal nios2 toolchains,
|
|
# revisit when they are upgraded with at least Binutils >= 2.26
|
|
# and GCC >= 5.3.
|
|
# https://sourceware.org/bugzilla/show_bug.cgi?id=19405
|
|
depends on !BR2_nios2
|
|
depends on BR2_ARCH_HAS_ATOMICS # libcairomm/libgtk3/libpangomm -> cairo
|
|
depends on BR2_INSTALL_LIBSTDCPP # glibmm, libpangomm -> glibmm/pango
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # C++11
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # *mm/libgtk3 -> libglib2
|
|
depends on BR2_USE_MMU # *mm/libgtk3 -> libglib2
|
|
depends on BR2_USE_WCHAR # *mm/libgtk3 -> libglib2
|
|
select BR2_PACKAGE_ATKMM
|
|
select BR2_PACKAGE_CAIROMM
|
|
select BR2_PACKAGE_GLIBMM
|
|
select BR2_PACKAGE_LIBGTK3
|
|
select BR2_PACKAGE_LIBSIGC
|
|
select BR2_PACKAGE_PANGOMM
|
|
help
|
|
The gtkmm3 package is a set of C++ bindings for GTK 3.
|
|
|
|
http://www.gtkmm.org/
|
|
|
|
comment "gtkmm3 needs a toolchain w/ C++, wchar, threads, gcc >= 4.8"
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_ARCH_HAS_ATOMICS
|
|
depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 || !BR2_USE_WCHAR \
|
|
|| !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
|