Config.in 507 B

123456789101112131415
  1. config BR2_PACKAGE_CLPEAK
  2. bool "clpeak"
  3. depends on BR2_PACKAGE_HAS_LIBOPENCL
  4. depends on BR2_INSTALL_LIBSTDCPP
  5. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # C++11
  6. select BR2_PACKAGE_OPENCL_CLHPP
  7. help
  8. clpeak is a tool that profiles OpenCL devices
  9. to find their peak capacities
  10. https://github.com/krrishnarraj/clpeak
  11. comment "clpeak needs an OpenCL provider, a toolchain w/ C++, gcc >= 4.8"
  12. depends on !BR2_PACKAGE_HAS_LIBOPENCL \
  13. || !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8