Skip to content

Commit

Permalink
Disabled install LuaJit for processor ARM (#416)
Browse files Browse the repository at this point in the history
Disabled installation of LuaJit by vcpkg.json, solving the problem of compatibility with ARM processors.
The installation of LuaJit will have to be done by apt Linux with the command:

sudo apt install libluajit-5.1-dev
  • Loading branch information
beats-dh committed Jun 14, 2022
1 parent 493e46f commit 6ad0268
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion vcpkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@
"jsoncpp",
"libzippp",
"protobuf",
"luajit",
{
"name": "luajit",
"platform": "!arm"
},
{ "name": "libmariadb",
"features": [ "mariadbclient" ]
},
Expand Down

0 comments on commit 6ad0268

Please sign in to comment.