Closed atoomic closed 5 years ago
I see this is coming from the .c
file generated from .xs
one... where we are using aliases in XS function without having a different code for it, thus no need to use ix
variable
for example in decode, the alias is just there as an alternate to decode and do not alter the code
SV *
decode(encoding, octets, check = NULL)
SV * encoding
SV * octets
SV * check
ALIAS:
bytes2str = 0
Looks like we cannot define XS alias without having dXSI32 loaded...
closing this case as there is nothing we can do there
so looks like something for xsubpp... you can report issue to it.
going to report it, this is a convenient feature more than anything else
notice these warnings from this build log http://perl.develop-help.com/raw/?id=223899
this is coming from
dXSI32
for example inXS_EUPXS
I'm not even sure it's required