We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
When building vfdecrypt, I get the following error:
vfdecrypt
ld: warning: directory not found for option '-L/opt/local/lib'
I installed all of the packages using Homebrew and a fix I found for this is the following: brew link --force openssl
brew link --force openssl
Then I changed the path used for LDFLAGS and CPPFLAGS in tools/vfdecrypt/Makefile as below:
LDFLAGS
CPPFLAGS
tools/vfdecrypt/Makefile
LDFLAGS="-L/usr/local/opt/openssl/lib" CPPFLAGS="-L/usr/local/opt/openssl/include"
LDFLAGS="-L/usr/local/opt/openssl/lib"
CPPFLAGS="-L/usr/local/opt/openssl/include"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
When building
vfdecrypt
, I get the following error:I installed all of the packages using Homebrew and a fix I found for this is the following:
brew link --force openssl
Then I changed the path used for
LDFLAGS
andCPPFLAGS
intools/vfdecrypt/Makefile
as below:LDFLAGS="-L/usr/local/opt/openssl/lib"
CPPFLAGS="-L/usr/local/opt/openssl/include"
The text was updated successfully, but these errors were encountered: