openssl install failed with perl error #3476
-
Command:
gist logs: |
Beta Was this translation helpful? Give feedback.
Answered by
seokbeomKim
Mar 30, 2023
Replies: 1 comment 5 replies
-
How has this issue been resolved? I'm facing the same issue. Are there any tips? |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I manually installed openssl@3 with a following steps.. maybe this could be helpful to someone.
(Ensure that the manual build is okay.)
First, install openssl@3 with debug option;
brew install --verbose --debug openssl@3
Even though errors occur just ignore them and finish the installation.
Then, download the source code and manually install:
(you must set $HOMEBREW_DIR)
./Configure --prefix=$HOMEBREW_DIR/Cellar/openssl@3/3.1.0 --openssldir=$HOMEBREW_DIR/etc/openssl@3 --libdir=$HOMEBREW_DIR/lib/
make -j8 && make install