Hello Rooters
Please, Let’s me understand leek memory with Root!
when we run root with vagrind , non leek is reported
but when i try to use TRint , a i have 180 lost reccord in this simple example
#include "TRint.h"
int main(int argc, char **argv) {
TRint* theApp = new TRint("GRU", &argc, argv, NULL, 0);
theApp->SetPrompt("test>");
theApp->Run(true);
delete (theApp);
}
that it’s compiled with this command :
gcc test.C -pthread -m32 -I/usr/global/root/root5.16//include -L/usr/global/root/root5.16//lib -lCore -lCint -lRIO -lNet -lHist -lGraf -lGraf3d -lGpad -lTree -lRint -lPostscript -lMatrix -lPhysics -lGui -pthread -lm -ldl -rdynamic -o test
Thanks for you help
Luc