We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b73970a commit 08f45a3Copy full SHA for 08f45a3
clients/lsp-lua.el
@@ -552,7 +552,8 @@ and `../lib` ,exclude `../lib/temp`.
552
(pcase system-type
553
('gnu/linux
554
(pcase (lsp-resolve-value lsp--system-arch)
555
- ('x64 "linux-x64")))
+ ('x64 "linux-x64")
556
+ ('arm64 "linux-arm64")))
557
('darwin
558
559
('x64 "darwin-x64")
lsp-mode.el
@@ -1503,6 +1503,7 @@ INHERIT-INPUT-METHOD will be proxied to `completing-read' without changes."
1503
(_ 'x64)))
1504
1505
(pcase system-configuration
1506
+ ((rx bol "aarch64-") 'arm64)
1507
((rx bol "x86_64") 'x64)
1508
((rx bol (| "i386" "i886")) 'x32)))
1509
(_
0 commit comments