From 0224abcd025f61df2e5e74917d0f5e565207c4b7 Mon Sep 17 00:00:00 2001 From: Saransh Sharma <89117846+saranshisatgit@users.noreply.github.com> Date: Wed, 24 Aug 2022 19:02:18 +0530 Subject: [PATCH 1/2] Update README.md --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index aba0206..6875e0e 100644 --- a/README.md +++ b/README.md @@ -187,9 +187,19 @@ Using `LogPrintf`, as seen before, you will be able to see the output in the com In case you have not done it yet, compile bitcoin for debugging (change other config flags as you need them). +``` +$ 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))" ``` From 309f0e742bb8e38731ac83dc0137a1ba196db1da Mon Sep 17 00:00:00 2001 From: Saransh Sharma <89117846+saranshisatgit@users.noreply.github.com> Date: Wed, 24 Aug 2022 19:12:31 +0530 Subject: [PATCH 2/2] Update README.md --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 6875e0e..eadf55a 100644 --- a/README.md +++ b/README.md @@ -185,12 +185,11 @@ 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 - ``` ```