Author

Topic: Source compile method (Read 194 times)

jr. member
Activity: 40
Merit: 7
February 20, 2018, 06:59:46 PM
#4
Firstly, there is no need to do make clean after make,

Best advice you will get! Doing a clean make every time will kill you with boredom.

By the way, if you're a developer and are interested in working on a project at some point feel free to drop me a message.
jr. member
Activity: 413
Merit: 5
February 20, 2018, 04:26:43 PM
#3
Firstly, there is no need to do make clean after make, that will just undo everything you just built. Rather you should do that before running make so that you are guaranteed to rebuild everything, but usually there is no need to do so.

You can skip the autogen.sh and configure steps if your changes did not touch any of the Makefile related things (Makefile.am, configure.ac, etc.).
Thanks!
staff
Activity: 3458
Merit: 6793
Just writing some code
February 20, 2018, 11:17:30 AM
#2
Firstly, there is no need to do make clean after make, that will just undo everything you just built. Rather you should do that before running make so that you are guaranteed to rebuild everything, but usually there is no need to do so.

You can skip the autogen.sh and configure steps if your changes did not touch any of the Makefile related things (Makefile.am, configure.ac, etc.).
jr. member
Activity: 413
Merit: 5
February 20, 2018, 01:34:17 AM
#1
So for newest source, doc says how to compile,

Cd ~/xxxxcoin/
./autogen.sh
./configure
make
make clean
sudo make install


So after I revise some source, I should do these line all again from ./autogen.sh?
or can I skip  ./autogen.sh  and ./configure, and just type [make] and [sudo make install]?
What commands are essential to recompile?

Thanks.
Jump to: