Skip to content

Commit

Permalink
Possible fix for dbConnect not working with 'mysql' on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
jushar committed Jul 1, 2017
1 parent 1355812 commit 3ccaadb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Server/dbconmy/premake5.lua
Expand Up @@ -38,7 +38,9 @@ project "Dbconmy"

if GLIBC_COMPAT then
filter { "system:linux" }
linkoptions "-l:libmysqlclient.a"
buildoptions { "-pthread" }
linkoptions { "-l:libmysqlclient.a", "-pthread" }
links { "z", "dl", "m" }
else
filter "system:linux"
links { "mysqlclient" }
Expand Down

0 comments on commit 3ccaadb

Please sign in to comment.