Config.in 1.0 KB

1234567891011121314151617181920212223242526
  1. config BR2_PACKAGE_MOARVM
  2. bool "moarvm"
  3. depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL # libuv
  4. depends on !BR2_STATIC_LIBS # libuv
  5. depends on BR2_USE_MMU # libuv
  6. depends on BR2_PACKAGE_LIBATOMIC_OPS_ARCH_SUPPORTS # libatomic_ops
  7. # needs AO_fetch_compare_and_swap, not implemented for sparcv8/sparcv9
  8. depends on !BR2_sparc64 && !BR2_sparc
  9. select BR2_PACKAGE_LIBUV
  10. select BR2_PACKAGE_LIBTOMMATH
  11. select BR2_PACKAGE_LIBATOMIC_OPS
  12. # dyncall does not work on MIPS; libffi needs to be used.
  13. # See: https://github.com/MoarVM/MoarVM/issues/222
  14. select BR2_PACKAGE_LIBFFI if BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el
  15. help
  16. Short for "Metamodel On A Runtime", MoarVM is a virtual machine
  17. built especially for Rakudo Perl 6 and the NQP Compiler Toolchain.
  18. http://moarvm.com
  19. comment "moarvm needs a toolchain w/ NPTL, dynamic library"
  20. depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL || BR2_STATIC_LIBS
  21. depends on BR2_USE_MMU
  22. depends on BR2_PACKAGE_LIBATOMIC_OPS_ARCH_SUPPORTS
  23. depends on !BR2_sparc64 && !BR2_sparc