You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Undefined symbols for architecture x86_64:
"_X509_get_signature_nid", referenced from:
wangle::SSLContextManager::insert(std::__1::shared_ptrwangle::ServerSSLContext, bool, wangle::SSLContextManager::SslContexts&) in libwangle.a(SSLContextManager.cpp.o)
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
The solution is to specify correct openssl directory, such as:
This worked for me, but I had to clean the environment first (git clean -fdx) before I'd stop getting the error, despite running cmake. Left over object files, I guess.
Build failure with the following message:
Undefined symbols for architecture x86_64:
"_X509_get_signature_nid", referenced from:
wangle::SSLContextManager::insert(std::__1::shared_ptrwangle::ServerSSLContext, bool, wangle::SSLContextManager::SslContexts&) in libwangle.a(SSLContextManager.cpp.o)
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
The solution is to specify correct openssl directory, such as:
cmake -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl -DOPENSSL_LIBRARIES=/usr/local/opt/openssl/lib/
The text was updated successfully, but these errors were encountered: