dove icon indicating copy to clipboard operation
dove copied to clipboard

Mac OS missed dependencies errors

Open borispovod opened this issue 4 years ago • 1 comments

There is errors when user using pre-compiled Dove binary:

See screen contains error.

borispovod avatar Sep 17 '21 13:09 borispovod

Temporary solution:

Install openssl:

brew install [email protected]

If you need to have [email protected] first in your PATH, run:

echo 'export PATH="/usr/local/opt/[email protected]/bin:$PATH"' >> ~/.zshrc

For compilers to find [email protected] you may need to set:

export LDFLAGS="-L/usr/local/opt/[email protected]/lib"
export CPPFLAGS="-I/usr/local/opt/[email protected]/include"

For pkg-config to find [email protected] you may need to set:

export PKG_CONFIG_PATH="/usr/local/opt/[email protected]/lib/pkgconfig"

borispovod avatar Oct 19 '21 13:10 borispovod