Last active
April 1, 2019 09:21
-
-
Save helloravi/289d7a462db8ff2028795816d1552b33 to your computer and use it in GitHub Desktop.
Installing stellar-core on macos
This file contains hidden or 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
Change -lboost_thread to -lboost_thread-mt in zagg-core/src/Makefile.am | |
-lcrypto error is an openssl problem in Macos - Fix it with this https://medium.com/@timmykko/using-openssl-library-with-macos-sierra-7807cfd47892 | |
CXX=g++-6 ./configure --with-openssl=/usr/local/opt/openssl | |
In zagg-core/src/Makefile.am | |
stellar_core_CXXFLAGS = $(BOOST_CPPFLAGS) -I/usr/local/opt/openssl/include | |
stellar_core_LDFLAGS = -pthread -fPIC -std=c++11 -L/usr/local/opt/openssl/lib | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment