0c3ff03090
moarvm's dyncall supports powerpc64 since version 2020.05 andd2e8418676
moarvm's dyncall supports mips since version 2020.02 and657b536cf6
dyncall does not support RISC-V as stated in https://dyncall.org/index Fixes: - http://autobuild.buildroot.org/results/027b7d15e6a6111409ed17bb29e001b6c6d9e0cf Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
26 lines
869 B
Plaintext
26 lines
869 B
Plaintext
config BR2_PACKAGE_MOARVM
|
|
bool "moarvm"
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL # libuv
|
|
depends on !BR2_STATIC_LIBS # libuv
|
|
depends on BR2_USE_MMU # libuv
|
|
depends on BR2_PACKAGE_LIBATOMIC_OPS_ARCH_SUPPORTS # libatomic_ops
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # libuv
|
|
select BR2_PACKAGE_LIBUV
|
|
select BR2_PACKAGE_LIBTOMMATH
|
|
select BR2_PACKAGE_LIBATOMIC_OPS
|
|
# dyncall does not work on riscv
|
|
select BR2_PACKAGE_LIBFFI if BR2_riscv
|
|
select BR2_PACKAGE_ZSTD
|
|
help
|
|
Short for "Metamodel On A Runtime", MoarVM is a virtual
|
|
machine built especially for Rakudo Perl 6 and the NQP
|
|
Compiler Toolchain.
|
|
|
|
http://moarvm.com
|
|
|
|
comment "moarvm needs a toolchain w/ NPTL, dynamic library"
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL || BR2_STATIC_LIBS
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_PACKAGE_LIBATOMIC_OPS_ARCH_SUPPORTS
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|