1config BR2_PACKAGE_RWMEM 2 bool "rwmem" 3 depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5 4 depends on BR2_INSTALL_LIBSTDCPP 5 depends on BR2_USE_WCHAR # fmt 6 select BR2_PACKAGE_FMT 7 select BR2_PACKAGE_INIH 8 help 9 Simple program to read/write from/to any location in memory. 10 11 https://github.com/tomba/rwmem 12 13comment "rwmem needs a toolchain w/ C++, wchar, gcc >= 5" 14 depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \ 15 !BR2_TOOLCHAIN_GCC_AT_LEAST_5 16