Currently I link to openssl as shared_library with my C++ program, like this in bazel BUILD file:
linkopts = [
"-lssl",
"-lcrypto",
],
but the openssl version of deploy machine is not the same with my compile machine, so I want to link staticlly to openssl library, but I dont know how...