<Swig Error when using C functions in Kotlin - two...
# stackoverflow
u
Swig Error when using C functions in Kotlin - two different errors I am using the following command using swig: swig -c++ -java -includeall -package onescream.onescream compute_feature_set.i The interface file is: /* compute_feature_set.i */ %module compute_feature_set %{ /* Includes the header in the wrapper code */ #include "compute_feature_set.h" %} /* Parse the header file to generate wrappers */ %include "compute_feature_set.h" I get the following errors: compute_feature_set.h17 Error: Unable to find 'stddef.h' compute_feature_set.h18 Error:...