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
This looks like a missing khash init macro, possibly caused by forgetting to include htslib/kash_str2int.h. str2int here isn't a variable or a type, but a preprocessor token which is appended to the various khash functions.
#include "khash.h"
KHASH_MAP_INIT_STR(str2int, int)
/*
* Wrappers for khash dictionaries used by mpileup.
*/
static inline void *khash_str2int_init(void)
{
return kh_init(str2int);
}
...
The KHASH_MAP_INIT_STR creates functions like kh_init_str2int which is what the kh_init(str2int) expands to.
I am getting the following error while building htslib:
But the rest seems to build.
The text was updated successfully, but these errors were encountered: