1 config BR2_PACKAGE_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
17 Short for "Metamodel On A Runtime", MoarVM is a virtual machine
18 built especially for Rakudo Perl 6 and the NQP Compiler Toolchain.
22 comment "moarvm needs a toolchain w/ NPTL, dynamic library"
23 depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL || BR2_STATIC_LIBS
24 depends on BR2_USE_MMU
25 depends on BR2_PACKAGE_LIBATOMIC_OPS_ARCH_SUPPORTS
26 depends on !BR2_sparc64 && !BR2_sparc
27 depends on BR2_TOOLCHAIN_HAS_SYNC_4