[EMAIL PROTECTED] wrote: > Hi, > > Can you please tell me how can i run mozilla wiht valgrind on linux? > > I run my private build mozilla like this: > GRE_HOME=. ./run-mozilla.sh ./firefox-bin
you should just be able to do ./firefox > but how can I run it with valgrind. ./firefox -g -d valgrind or (invoking run-mozilla.sh) GRE_HOME=. ./run-mozilla.sh -g -d valgrind ./firefox-bin will give you the basics. If you want to pass options to valgrind, you need to edit run-mozilla.sh or do ./run-mozilla.sh /bin/bash valgrind --whateveroptions ./firefox-bin -- Andrew Schultz [EMAIL PROTECTED] http://www.sens.buffalo.edu/~ajs42/ _______________________________________________ dev-tech-layout mailing list [email protected] https://lists.mozilla.org/listinfo/dev-tech-layout

