1config BR2_PACKAGE_FLATBUFFERS 2 bool "flatbuffers" 3 depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 # C++11 4 depends on BR2_INSTALL_LIBSTDCPP 5 help 6 FlatBuffers is an efficient cross platform serialization 7 library for C++, C#, C, Go, Java, JavaScript, PHP, and 8 Python. It was originally created at Google for game 9 development and other performance-critical applications. 10 11 http://google.github.io/flatbuffers/ 12 13comment "flatbuffers needs a toolchain w/ C++, gcc >= 4.7" 14 depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 15