Config.in 460 B

123456789101112131415
  1. config BR2_PACKAGE_RWMEM
  2. bool "rwmem"
  3. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_10 # C++20
  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. https://github.com/tomba/rwmem
  11. comment "rwmem needs a toolchain w/ C++, wchar, gcc >= 10"
  12. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
  13. !BR2_TOOLCHAIN_GCC_AT_LEAST_10