This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
==> Caveats | |
==> openssl | |
A CA file has been bootstrapped using certificates from the SystemRoots | |
keychain. To add additional certificates (e.g. the certificates added in | |
the System keychain), place .pem files in | |
/usr/local/etc/openssl/certs | |
and run | |
/usr/local/opt/openssl/bin/c_rehash | |
openssl is keg-only, which means it was not symlinked into /usr/local, | |
because Apple has deprecated use of OpenSSL in favor of its own TLS and crypto libraries. | |
If you need to have openssl first in your PATH run: | |
echo 'export PATH="/usr/local/opt/openssl/bin:$PATH"' >> ~/.bash_profile | |
For compilers to find openssl you may need to set: | |
export LDFLAGS="-L/usr/local/opt/openssl/lib" | |
export CPPFLAGS="-I/usr/local/opt/openssl/include" | |
==> openssl@1.1 | |
A CA file has been bootstrapped using certificates from the system | |
keychain. To add additional certificates, place .pem files in | |
/usr/local/etc/openssl@1.1/certs | |
and run | |
/usr/local/opt/openssl@1.1/bin/c_rehash | |
openssl@1.1 is keg-only, which means it was not symlinked into /usr/local, | |
because this is an alternate version of another formula. | |
If you need to have openssl@1.1 first in your PATH run: | |
echo 'export PATH="/usr/local/opt/openssl@1.1/bin:$PATH"' >> ~/.bash_profile | |
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" | |
==> readline | |
readline is keg-only, which means it was not symlinked into /usr/local, | |
because macOS provides the BSD libedit library, which shadows libreadline. | |
In order to prevent conflicts when programs look for libreadline we are | |
defaulting this GNU Readline installation to keg-only. | |
For compilers to find readline you may need to set: | |
export LDFLAGS="-L/usr/local/opt/readline/lib" | |
export CPPFLAGS="-I/usr/local/opt/readline/include" | |
==> sqlite | |
sqlite is keg-only, which means it was not symlinked into /usr/local, | |
because macOS provides an older sqlite3. | |
If you need to have sqlite first in your PATH run: | |
echo 'export PATH="/usr/local/opt/sqlite/bin:$PATH"' >> ~/.bash_profile | |
For compilers to find sqlite you may need to set: | |
export LDFLAGS="-L/usr/local/opt/sqlite/lib" | |
export CPPFLAGS="-I/usr/local/opt/sqlite/include" | |
==> icu4c | |
icu4c is keg-only, which means it was not symlinked into /usr/local, | |
because macOS provides libicucore.dylib (but nothing else). | |
If you need to have icu4c first in your PATH run: | |
echo 'export PATH="/usr/local/opt/icu4c/bin:$PATH"' >> ~/.bash_profile | |
echo 'export PATH="/usr/local/opt/icu4c/sbin:$PATH"' >> ~/.bash_profile | |
For compilers to find icu4c you may need to set: | |
export LDFLAGS="-L/usr/local/opt/icu4c/lib" | |
export CPPFLAGS="-I/usr/local/opt/icu4c/include" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment