pontem-network / dove

🛠️ Diem/Pontem Move package manager
MIT License
35 stars 13 forks source link

Mac OS missed dependencies errors #147

Open borispovod opened 3 years ago

borispovod commented 3 years ago

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

See screen contains error.

borispovod commented 3 years ago

Temporary solution:

Install openssl:

brew install openssl@1.1

If you need to have openssl@1.1 first in your PATH, run:

echo 'export PATH="/usr/local/opt/openssl@1.1/bin:$PATH"' >> ~/.zshrc

For compilers to find openssl@1.1 you may need to set:

export LDFLAGS="-L/usr/local/opt/openssl@1.1/lib"
export CPPFLAGS="-I/usr/local/opt/openssl@1.1/include"

For pkg-config to find openssl@1.1 you may need to set:

export PKG_CONFIG_PATH="/usr/local/opt/openssl@1.1/lib/pkgconfig"