Config.in 1.1 KB

123456789101112131415161718192021222324252627
  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. depends on BR2_TOOLCHAIN_HAS_SYNC_4 # libuv
  10. select BR2_PACKAGE_LIBUV
  11. select BR2_PACKAGE_LIBTOMMATH
  12. select BR2_PACKAGE_LIBATOMIC_OPS
  13. # dyncall does not work on MIPS; libffi needs to be used.
  14. # See: https://github.com/MoarVM/MoarVM/issues/222
  15. select BR2_PACKAGE_LIBFFI if BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el
  16. help
  17. Short for "Metamodel On A Runtime", MoarVM is a virtual machine
  18. built especially for Rakudo Perl 6 and the NQP Compiler Toolchain.
  19. http://moarvm.com
  20. comment "moarvm needs a toolchain w/ NPTL, dynamic library"
  21. depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL || BR2_STATIC_LIBS
  22. depends on BR2_USE_MMU
  23. depends on BR2_PACKAGE_LIBATOMIC_OPS_ARCH_SUPPORTS
  24. depends on !BR2_sparc64 && !BR2_sparc
  25. depends on BR2_TOOLCHAIN_HAS_SYNC_4