File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -141,11 +141,17 @@ rustflags = [
141
141
" -C" , " link-arg=-undefined" ,
142
142
" -C" , " link-arg=dynamic_lookup" ,
143
143
]
144
+
145
+ [target .aarch64-apple-darwin ]
146
+ rustflags = [
147
+ " -C" , " link-arg=-undefined" ,
148
+ " -C" , " link-arg=dynamic_lookup" ,
149
+ ]
144
150
```
145
151
On Linux you can build modules normally with ` cargo build --release ` .
146
152
Vendored and non-vendored builds are supported for these OS.
147
153
148
- On Windows ` vendored ` mode is not supported since you need to link to a Lua dll.
154
+ On Windows ` vendored ` mode for modules is not supported since you need to link to a Lua dll.
149
155
Easiest way is to use either MinGW64 (as part of [ MSYS2] ( https://github.com/msys2/msys2 ) package) with ` pkg-config ` or
150
156
MSVC with ` LUA_INC ` / ` LUA_LIB ` / ` LUA_LIB_NAME ` environment variables.
151
157
You can’t perform that action at this time.
0 commit comments