summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKrasimir Angelov <kr.angelov@gmail.com>2023-08-04 14:46:27 +0200
committerGitHub <noreply@github.com>2023-08-04 14:46:27 +0200
commit8f6dc916b60611d30bd3ed50e1862087a019ff06 (patch)
treed41467fe723a2059253c3887107944ec8f21037c /src
parent6a36b486fae612798ec36873ccbbdbca73df4f6c (diff)
added aarch64 configure.ac
Diffstat (limited to 'src')
-rw-r--r--src/runtime/c/configure.ac4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/runtime/c/configure.ac b/src/runtime/c/configure.ac
index d8e55c164..2af669fe2 100644
--- a/src/runtime/c/configure.ac
+++ b/src/runtime/c/configure.ac
@@ -43,8 +43,10 @@ case "$target_cpu" in
[Define if lightning is targeting the sparc architecture]) ;;
powerpc) cpu=ppc; AC_DEFINE(LIGHTNING_PPC, 1,
[Define if lightning is targeting the powerpc architecture]) ;;
- arm*) cpu=arm; AC_DEFINE(LIGHTNING_ARM, 1,
+ arm*) cpu=arm; AC_DEFINE(LIGHTNING_ARM, 1,
[Define if lightning is targeting the arm architecture]) ;;
+ aarch64) cpu=aarch64; AC_DEFINE(LIGHTNING_AARCH64, 1,
+ [Define if lightning is targeting the aarch64 architecture]) ;;
*) AC_MSG_ERROR([cpu $target_cpu not supported]) ;;
esac