aboutsummaryrefslogtreecommitdiff
path: root/src/lpm.c
diff options
context:
space:
mode:
authorAdam Harrison <adamdharrison@gmail.com>2023-01-16 22:01:07 -0500
committerAdam Harrison <adamdharrison@gmail.com>2023-01-16 22:01:07 -0500
commit84fc6926b8b30518e6ec57c16f3a5d8129a98e11 (patch)
tree0f481e9c35c81d3f49f0179d2503c054098bcf61 /src/lpm.c
parentc3fbf08203dd70e782b94d9fee989b1998ce9d73 (diff)
downloadlite-xl-plugin-manager-84fc6926b8b30518e6ec57c16f3a5d8129a98e11.tar.gz
lite-xl-plugin-manager-84fc6926b8b30518e6ec57c16f3a5d8129a98e11.zip
Updated build, and release.
Diffstat (limited to 'src/lpm.c')
-rw-r--r--src/lpm.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lpm.c b/src/lpm.c
index bd08403..7e4fdc7 100644
--- a/src/lpm.c
+++ b/src/lpm.c
@@ -1009,6 +1009,10 @@ static const luaL_Reg system_lib[] = {
#define ARCH_PROCESSOR "x86_64"
#elif __i386__
#define ARCH_PROCESSOR "x86"
+ #elif __aarch64__
+ #define ARCH_PROCESSOR "aarch64"
+ #elif __arm__
+ #define ARCH_PROCESSOR "arm"
#else
#error "Please define -DARCH_PROCESSOR."
#endif