You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
src/6model/containers.c:117:5: error: incompatible function pointer types initializing 'void (*)(MVMThreadContext *, MVMObject *, MVMuint64)' (aka 'void (*)(struct MVMThreadContext *, struct MVMObject *, unsigned long)') with an expression of type 'void (MVMThreadContext *, MVMObject *, MVMint64)' (aka 'void (struct MVMThreadContext *, struct MVMObject *, long)') [-Wincompatible-function-pointer-types]
code_pair_store_i, /* FIXME need a code_pair_store_u but lacking tests showing this need */
^~~~~~~~~~~~~~~~~
src/6model/containers.c:374:5: error: incompatible function pointer types initializing 'void (*)(MVMThreadContext *, MVMObject *, MVMuint64)' (aka 'void (*)(struct MVMThreadContext *, struct MVMObject *, unsigned long)') with an expression of type 'void (MVMThreadContext *, MVMObject *, MVMint64)' (aka 'void (struct MVMThreadContext *, struct MVMObject *, long)') [-Wincompatible-function-pointer-types]
value_desc_cont_store_i, /* FIXME need a value_desc_cont_store_u but lacking tests showing this need */
^~~~~~~~~~~~~~~~~~~~~~~
2 warnings and 2 errors generated.
make: *** [Makefile:668: src/6model/containers.o] Error 1
I was able to work around these errors and get the compilation to succeed by replacing value_desc_cont_store_i with NULL (and ditto for code_pair_store_i) but I think probably there's a better fix
thanks
Brian
The text was updated successfully, but these errors were encountered:
Hello,
When compiling moarVM on android (in termux), following the instructions at https://borg.moe/building-rakudo-perl-6-on-termux.html, I get the error below:
I was able to work around these errors and get the compilation to succeed by replacing
value_desc_cont_store_i
withNULL
(and ditto forcode_pair_store_i
) but I think probably there's a better fixthanks
Brian
The text was updated successfully, but these errors were encountered: