On Jul 20, 2005 at 18:37, Dan Pascu dan@ag-projects.com wrote:
On Wednesday 20 July 2005 18:15, Ricardo Martinez wrote:
2.- I'm downloading SER from CVS with the command :
cvs -z3 -d:pserver:anonymous@cvs.ser.berlios.de:/cvsroot/ser co -rrel_0_9_0 sip_router
To download the changes you introduce in mediaproxy.c i need to run the same command ????
You can do this, but you don't have to download the whole ser cvs tree again.
Instead, you can go inside the previously checked-out source tree, and type
cd sip_router/ cvs update -Pd
watch for the output and there you should see a line with:
P modules/mediaproxy/mediaproxy.c
(the P in front of the file means that your copy was updated with the changes retrieved from the cvs server)
3.- How do i compile SER without optimization?
One simple way to do this is to compile ser with:
make CC_EXTRA_OPTS="-g -O0"
There may be other ways to do the same, someone more intimate with ser build internals may be able to point you to them.
make mode=debug
will do the same thing + define EXTRA_DEBUG (=> very verbose).
Andrei