From 78a2a6891f523cbbc113744407cc81f11dbf68f1 Mon Sep 17 00:00:00 2001 From: Philippe Teuwen Date: Fri, 13 Mar 2020 18:03:48 +0100 Subject: [PATCH] Add PRIx64 for gcc-arm-none-eabi v8 --- armsrc/util.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/armsrc/util.h b/armsrc/util.h index 9748152ef..052ae266c 100644 --- a/armsrc/util.h +++ b/armsrc/util.h @@ -13,6 +13,11 @@ #include "common.h" +// PRIx64 definition missing with gcc-arm-none-eabi v8? +#ifndef PRIx64 + #define PRIx64 "llx" +#endif + // Basic macros #ifndef SHORT_COIL