0
1
I am new to bitcoin core and C++
I downloaded already the project from: https://github.com/bitcoin/bitcoin and run "makefile" command. Now I can make all transaction against the blockchain.
I want to have the option to run "getnewaddress" in the command line and it will stop in a break point in the source code. but i cann't run the commands "bitcoind" and "getnewaddress", without first building the project.
How can I debug this project?
In order to debug, you need debug symbols. You can only generate them if you build the source code on your machine with the debug flag on. – CinCout – 2017-12-20T17:09:31.733
@CinCout how to build the project with the debug flag on ? Is this something I need to change in the code or in the terminal with the "make" command? thanks. – Nomi – 2017-12-21T13:32:33.493