2015-06-06 01:47:05 +02:00
|
|
|
config BR2_PACKAGE_MOARVM
|
|
|
|
bool "moarvm"
|
2016-11-20 23:33:59 +01:00
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL # libuv
|
2015-06-06 01:47:05 +02:00
|
|
|
depends on !BR2_STATIC_LIBS # libuv
|
|
|
|
depends on BR2_USE_MMU # libuv
|
2016-02-07 22:59:24 +01:00
|
|
|
depends on BR2_PACKAGE_LIBATOMIC_OPS_ARCH_SUPPORTS # libatomic_ops
|
2016-05-28 20:32:15 +02:00
|
|
|
# needs AO_fetch_compare_and_swap, not implemented for sparcv8/sparcv9
|
|
|
|
depends on !BR2_sparc64 && !BR2_sparc
|
2017-02-23 23:49:45 +01:00
|
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # libuv
|
2015-06-06 01:47:05 +02:00
|
|
|
select BR2_PACKAGE_LIBUV
|
2016-04-28 21:59:31 +02:00
|
|
|
select BR2_PACKAGE_LIBTOMMATH
|
2015-06-06 01:47:05 +02:00
|
|
|
select BR2_PACKAGE_LIBATOMIC_OPS
|
2016-11-23 15:39:12 +01:00
|
|
|
# dyncall does not work on MIPS; libffi needs to be used.
|
|
|
|
# See: https://github.com/MoarVM/MoarVM/issues/222
|
|
|
|
select BR2_PACKAGE_LIBFFI if BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el
|
2015-06-06 01:47:05 +02:00
|
|
|
help
|
2017-12-18 09:21:05 +01:00
|
|
|
Short for "Metamodel On A Runtime", MoarVM is a virtual
|
|
|
|
machine built especially for Rakudo Perl 6 and the NQP
|
|
|
|
Compiler Toolchain.
|
2015-06-06 01:47:05 +02:00
|
|
|
|
|
|
|
http://moarvm.com
|
|
|
|
|
2016-11-20 23:33:59 +01:00
|
|
|
comment "moarvm needs a toolchain w/ NPTL, dynamic library"
|
|
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL || BR2_STATIC_LIBS
|
2015-06-06 01:47:05 +02:00
|
|
|
depends on BR2_USE_MMU
|
2016-02-07 22:59:24 +01:00
|
|
|
depends on BR2_PACKAGE_LIBATOMIC_OPS_ARCH_SUPPORTS
|
2016-05-28 20:32:15 +02:00
|
|
|
depends on !BR2_sparc64 && !BR2_sparc
|
2017-02-23 23:49:45 +01:00
|
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|