From b168149beeb03dc903f4dc1e610117bcab40fed2 Mon Sep 17 00:00:00 2001 From: p-x9 <50244599+p-x9@users.noreply.github.com> Date: Sun, 6 Oct 2024 05:37:18 +0900 Subject: [PATCH] Fix not to use `uuid/uuid.h` (for linux platform) --- Sources/MachOKitC/include/dyld_cache_format.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Sources/MachOKitC/include/dyld_cache_format.h b/Sources/MachOKitC/include/dyld_cache_format.h index 118073d..5f0f133 100644 --- a/Sources/MachOKitC/include/dyld_cache_format.h +++ b/Sources/MachOKitC/include/dyld_cache_format.h @@ -28,7 +28,9 @@ #define __DYLD_CACHE_FORMAT__ #include -#include + +//#include +typedef uint8_t uuid_t[16]; //#include #include "fixup-chains.h"