You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+9-2
Original file line number
Diff line number
Diff line change
@@ -2,18 +2,25 @@
2
2
3
3
This is a Rust port of the Lua Language Server. Not all code is implemented in Rust; only the host program has been rewritten in Rust, while some C code is still used. The main goal of this port is to ensure compatibility with more platforms.
4
4
5
+
# Runtime
6
+
7
+
The current default runtime is LuaJIT, but JIT is not enabled. Performance is better with `jit.off()`.
8
+
5
9
# Build Support
6
10
7
11
-[x] win32-x64
8
12
-[x] win32-ia32
9
13
-[x] linux-aarch64 not format
10
14
-[x] linux-x64
11
15
-[x] linux-musl
12
-
-[x] linux-bsd not format
16
+
-[x] linux-bsd not format. need 'ld' but not find.
13
17
-[x] darwin-x64
14
18
-[x] darwin-arm64
15
19
16
-
NOTE: The linux-aarch64 and linux-bsd are not format, because there are some build problems.
20
+
NOTE:
21
+
1. The linux-aarch64 and linux-bsd are not format, because there are some build problems.
22
+
23
+
2. linux-bsd Unable to compile successfully under the virtual machine provided by cross, you can compile it yourself.
0 commit comments