Builds are failing on RHEL machines because of PRIu64.
lvm/projects/compiler-rt/lib/gwp_asan/guarded_pool_allocator.cpp:420:50: error: expected ')'
snprintf(ThreadBuffer, kThreadBufferLen, "%" PRIu64, ThreadID);
inttypes.h in RHEL uses PRIu64 macros only when __STDC_FORMAT_MACROS is defined.
How do you know it wasn't included before somewhere, by some previous header?
This i think normally should be solved by adding -D__STDC_FORMAT_MACROS to compile command.