first commit - migrated from codeberg
This commit is contained in:
commit
5ead03e1f7
567 changed files with 102721 additions and 0 deletions
9
native/statistics/arm64_fixes.h
Normal file
9
native/statistics/arm64_fixes.h
Normal file
|
@ -0,0 +1,9 @@
|
|||
#pragma once
|
||||
|
||||
#ifdef __aarch64__
|
||||
// Fix uintptr_t definition for ARM64
|
||||
#include <stdint.h>
|
||||
// We need to undefine and redefine uintptr_t to ensure it's 64-bit on ARM64
|
||||
#undef uintptr_t
|
||||
typedef uint64_t uintptr_t;
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue