diff --git a/README.md b/README.md index aba0206..eadf55a 100644 --- a/README.md +++ b/README.md @@ -185,11 +185,20 @@ Using `LogPrintf`, as seen before, you will be able to see the output in the com ##### 1. Compile Bitcoin for debugging -In case you have not done it yet, compile bitcoin for debugging (change other config flags as you need them). +In case you have not done it yet, compile bitcoin for debugging (change other config flags as you need them). I had some issues regar + +``` +$ cd depends +$ make HOST=arm-apple-darwin +``` + +``` +$ ./autogen.sh +``` ``` $ make clean -$ ./configure CXXFLAGS="-O0 -ggdb3" +$ ./configure CXXFLAGS="-O0 -ggdb3" --prefix=$PWD/depends/arm-apple-darwin $ make -j "$(($(sysctl -n hw.physicalcpu)+1))" ```