Closed manxorist closed 8 years ago
Thanks for this. You mean editing build/gmake.unix/Premake5.make
Yes, I mean editing build/gmake.unix/Premake5.make
.
Looking at the premake5.lua file for alpha10, it contains:
filter "system:linux"
if not _OPTIONS["no-curl"] and os.findlib("ssl") then
links { "ssl", "crypto" }
end
I'm assuming that the system that generated these makefiles did not have ssl. This is no longer an issue going forward as we don't use that function in the premake5.lua anymore, nor do we rely on ssl or crypto.
Editing
build/gmake.unix/Premake5.lua
and adding-lssl -lcrypto
by hand fixes it.