Page 1 of 1
compile question
Posted: Tue Apr 05, 2005 12:40 am
by pete212
if i have something that i wanted changed in the server and i need to 'make' for it.. is it alright if i make while the server is running and then when its done i restart the server to save sometime for the downtime?
Posted: Tue Apr 05, 2005 2:26 am
by codemastr
I guess that depends on whether your OS allows you to overwrite a file that is currently in use...
Posted: Tue Apr 05, 2005 9:19 pm
by pete212
i run redhat 9 shrike
Posted: Wed Apr 06, 2005 1:51 am
by w00t
Generally you have to use a different directory, or at least just rename the ircd binary.
Posted: Wed Apr 06, 2005 11:15 pm
by Winbots
i have RH9, and i can make over the running ircd... but prolly should do "make clean; make" instead of just "make"... if you are making a module then no need for even a restart

Posted: Thu Apr 07, 2005 1:33 am
by pete212
what does make clean do
Posted: Thu Apr 07, 2005 1:55 am
by Winbots
it removes any other junk
Posted: Thu Apr 07, 2005 2:21 pm
by AngryWolf
Including binaries (on *NIX, for example, src/ircd, *.o and *.so files). This makes sure you'll recompile everything and therefore you won't mix old binaries with new ones. Handy.
