Closed dakrulski closed 6 years ago
Use the depends folder provided with the source code. Just run make in the depends folder and use whatever subfolder it creates.
https://github.com/HTMLCOIN/HTMLCOIN/tree/master/depends
I think I remember having that same issue even with the depends folder and had to switch to Macports.
The Mac binaries already exist. The DMG is the GUI. The Mac.tar.gz has the command line. I asked @bushstar to make them for us over a month ago. Look under releases and you'll see them. Worked fine for me on Marcos 10.10 and 10.12
Thanks! I had removed my comment because I noticed just as I posted that they are there.
@Bushstar @sunk818 compiling and using the depends folder did not solve the issue for me. any ideas?
Two things, firstly try using this with configure including the prefix to the compiled dependencies foler...
--enable-static --disable-shared
Then run make clean and make. Complete steps should look something like the following though you will need to update the prefix to your version of the compiled deps folder.
git clone https://github.com/HTMLCOIN/HTMLCOIN.git
cd HTMLCOIN/
cd depends/
make
cd ..
rm -Rf src/cpp-ethereum/
git submodule update --init --recursive
./autogen.sh
./configure --prefix=`pwd`/depends/x86_64-apple-darwin11 --disable-tests --disable-bench --enable-static --disable-shared
make
Secondly I did hit errors myself and used Macports instead of Homebrew, if the above fails give Macports a try.
I followed your instructions but it doesn't build. Maybe there is something wrong with my openssl? I tried to change:
-I/usr/local/opt/openssl/include
to:-I/usr/local/Cellar/openssl/1.0.2n/include
and:-L/usr/local/opt/openssl/lib
to:-L/usr/local/Cellar/openssl/1.0.2n/lib
But that doesn't help.