Displaying 1 result from an estimated 1 matches for "trebek".
2019 Jun 09
2
Question about the mailing list.
I'm trying to build the example C++ file on the DFSan sanitizer page:
https://clang.llvm.org/docs/DataFlowSanitizer.html
However, i'ts complaining about unknown types (intptr_t, uint16_t,
uint32_t, uint64_t).
I got it to build after adding typedefs from stdint.h and sys/types.h to
the sanitizer/common_interface_defs.h header file:
typedef __intptr_t intptr_t;
typedef u_int16_t uint16_t;