1config BR2_PACKAGE_VTE 2 bool "vte" 3 depends on BR2_PACKAGE_HOST_RUSTC_ARCH_SUPPORTS # libgtk3 -> host-libgtk3 -> host-librsvg 4 depends on BR2_USE_WCHAR 5 depends on BR2_TOOLCHAIN_HAS_THREADS 6 depends on BR2_USE_MMU 7 depends on BR2_INSTALL_LIBSTDCPP 8 depends on BR2_TOOLCHAIN_GCC_AT_LEAST_10 # C++20 9 depends on BR2_TOOLCHAIN_HAS_SYNC_4 10 depends on !BR2_TOOLCHAIN_USES_MUSL 11 depends on BR2_PACKAGE_HAS_LIBEGL_WAYLAND || \ 12 BR2_PACKAGE_HAS_LIBGL 13 select BR2_PACKAGE_LIBGTK3 14 select BR2_PACKAGE_PCRE2 15 help 16 VTE is a library (libvte) implementing a terminal emulator 17 widget for GTK+, and a minimal sample application (vte) 18 using that. Vte is mainly used in gnome-terminal, but 19 can also be used to embed a console/terminal in games, 20 editors, IDEs, etc. 21 22 http://github.com/GNOME/vte 23 24comment "vte needs a uClibc or glibc toolchain w/ wchar, threads, C++, gcc >= 10" 25 depends on BR2_PACKAGE_HOST_RUSTC_ARCH_SUPPORTS 26 depends on BR2_USE_MMU 27 depends on BR2_TOOLCHAIN_HAS_SYNC_4 28 depends on !BR2_USE_WCHAR || !BR2_INSTALL_LIBSTDCPP || \ 29 !BR2_TOOLCHAIN_HAS_THREADS || \ 30 !BR2_TOOLCHAIN_GCC_AT_LEAST_10 || \ 31 BR2_TOOLCHAIN_USES_MUSL 32 33comment "vte needs an OpenGL or an OpenGL-EGL/wayland backend" 34 depends on BR2_PACKAGE_HOST_RUSTC_ARCH_SUPPORTS 35 depends on BR2_USE_MMU 36 depends on BR2_TOOLCHAIN_HAS_SYNC_4 37 depends on !BR2_PACKAGE_HAS_LIBEGL_WAYLAND && \ 38 !BR2_PACKAGE_HAS_LIBGL 39