From f803006608331d004b175701c6c3b17daa57a6a2 Mon Sep 17 00:00:00 2001 From: Brad Smith Date: Sun, 8 Dec 2024 07:49:34 -0500 Subject: [PATCH] Use proper symbol name checking for arm64 The proper symbol for checking for 64-bit ARM is __aarch64__ --- src/utils/timeStamp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/timeStamp.cpp b/src/utils/timeStamp.cpp index 8fd11e9f..524b57a3 100644 --- a/src/utils/timeStamp.cpp +++ b/src/utils/timeStamp.cpp @@ -26,7 +26,7 @@ static uint64_t rdtsc() { -#if defined(__arm64__) || defined(__arm__) +#if defined(__aarch64__) || defined(__arm__) // SPDX-License-Identifier: GPL-2.0 uint64_t val = 0;