bugfix: doesn't set flags for Darwin arm64. (#2071) · openresty/lua-nginx-module@1fd1e83 (original) (raw)
Navigation Menu
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Commit 1fd1e83
bugfix: doesn't set flags for Darwin arm64. (#2071)
File tree
1 file changed
lines changed
1 file changed
lines changed
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
@@ -94,7 +94,7 @@ END | |||
94 | 94 | case "$NGX_PLATFORM" in | |
95 | 95 | Darwin:*) | |
96 | 96 | case "$NGX_MACHINE" in | |
97 | - amd64 | x86_64 | i386) | |
97 | + amd64 | arm64 | x86_64 | |
98 | 98 | echo "adding extra linking options needed by LuaJIT on $NGX_MACHINE" | |
99 | 99 | luajit_ld_opt="$luajit_ld_opt -pagezero_size 10000 -image_base 100000000" | |
100 | 100 | ngx_feature_libs="$ngx_feature_libs -pagezero_size 10000 -image_base 100000000" |