This is expected and a false positive, exclude the vmware detection trick when __SANITIZE_ADDRESS__ is defined. --- sys-utils/lscpu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys-utils/lscpu.c b/sys-utils/lscpu.c index b36d1da..f695a32 100644 --- a/sys-utils/lscpu.c +++ b/sys-utils/lscpu.c @@ -34,7 +34,7 @@ #include <sys/types.h> #include <sys/stat.h> -#if defined(__x86_64__) || defined(__i386__) +#if (defined(__x86_64__) || defined(__i386__)) && !defined(__SANITIZE_ADDRESS__) # define INCLUDE_VMWARE_BDOOR #endif -- 2.4.1 -- To unsubscribe from this list: send the line "unsubscribe util-linux" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html