Config.in 979 B

12345678910111213141516171819202122232425262728293031323334
  1. config BR2_PACKAGE_HIGHWAY
  2. bool "highway"
  3. depends on BR2_TOOLCHAIN_HAS_ATOMIC
  4. depends on BR2_INSTALL_LIBSTDCPP
  5. # For gcc bug 58969, see:
  6. # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58969
  7. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_7 # C++11, GCC_BUG_58969
  8. help
  9. Highway is a C++ library that provides portable SIMD/vector
  10. intrinsics.
  11. https://github.com/google/highway
  12. if BR2_PACKAGE_HIGHWAY
  13. config BR2_PACKAGE_HIGHWAY_CONTRIB
  14. bool "Enable Contrib"
  15. help
  16. Build Highway contrib library which contains extra
  17. SIMD-related utilities: an image class with aligned rows, a
  18. math library (16 functions already implemented, mostly
  19. trigonometry), and functions for computing dot products and
  20. sorting.
  21. config BR2_PACKAGE_HIGHWAY_EXAMPLES
  22. bool "Enable Examples"
  23. help
  24. Build Highway examples
  25. endif
  26. comment "highway needs a toolchain w/ C++, gcc >= 7"
  27. depends on BR2_TOOLCHAIN_HAS_ATOMIC
  28. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_GCC_AT_LEAST_7