summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKrasimir Angelov <kr.angelov@gmail.com>2023-08-09 10:58:50 +0200
committerGitHub <noreply@github.com>2023-08-09 10:58:50 +0200
commitfae2fc4c6c371d84e88633e5fbf1f71451272a5e (patch)
tree8215a69a84ebebe4a9c1105ddbe59bee5d1e81e9 /src
parent5131fadd1f622436314c6059cf2d7b3f64eb5d89 (diff)
Try with __aarch64__
Diffstat (limited to 'src')
-rw-r--r--src/runtime/c/pgf/jit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/c/pgf/jit.c b/src/runtime/c/pgf/jit.c
index 77ff24e99..a4d2c3ec6 100644
--- a/src/runtime/c/pgf/jit.c
+++ b/src/runtime/c/pgf/jit.c
@@ -5,7 +5,7 @@
#include <pgf/reasoner.h>
#include <pgf/reader.h>
-#if !defined(LIGHTNING_AARCH64)
+#if !defined(__aarch64__)
#include "lightning.h"
#endif