Config.in 988 B

1234567891011121314151617181920212223242526272829
  1. config BR2_PACKAGE_HOST_MONO_ARCH_SUPPORTS
  2. bool
  3. default y if BR2_HOSTARCH = "x86_64"
  4. default y if BR2_HOSTARCH = "x86"
  5. config BR2_PACKAGE_MONO_ARCH_SUPPORTS
  6. bool
  7. default y if (BR2_aarch64 || BR2_arm || BR2_armeb || \
  8. BR2_i386 || BR2_powerpc || BR2_x86_64)
  9. depends on BR2_PACKAGE_HOST_MONO_ARCH_SUPPORTS
  10. depends on BR2_PACKAGE_LIBATOMIC_OPS_ARCH_SUPPORTS
  11. config BR2_PACKAGE_MONO
  12. bool "mono"
  13. depends on BR2_PACKAGE_MONO_ARCH_SUPPORTS
  14. depends on BR2_INSTALL_LIBSTDCPP
  15. depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL # pthread_getattr_np()
  16. depends on !BR2_STATIC_LIBS
  17. select BR2_PACKAGE_LIBATOMIC_OPS
  18. help
  19. An open source, cross-platform, implementation of C#
  20. and the CLR that is binary compatible with Microsoft.NET.
  21. http://download.mono-project.com/sources/mono/
  22. comment "mono needs a toolchain w/ C++, NPTL, dynamic library"
  23. depends on BR2_PACKAGE_MONO_ARCH_SUPPORTS
  24. depends on !BR2_INSTALL_LIBSTDCPP || \
  25. !BR2_TOOLCHAIN_HAS_THREADS_NPTL || BR2_STATIC_LIBS