|
From: Mani v. <man...@gm...> - 2013-06-14 10:26:54
|
Hi , Apologies if it is silly question as i am a beginner. Is it possible to use the memcheck tool for code rather than executable ( binary) ? As our system is complex and can't be tested/validated as single as binary. Any other method is there so that i can intergrate/add valgrind plug-in to our system. -- Thanks & Regards, Manivannan S +91-9789122210 |
|
From: <pa...@fr...> - 2013-06-14 10:36:27
|
----- Original Message ----- > Hi , > > Apologies if it is silly question as i am a beginner. > > Is it possible to use the memcheck tool for code rather than > executable ( binary) ? Hi No, Valgrind is strictly runtime. Google for static analysis tools. A+ Paul |
|
From: Mani v. <man...@gm...> - 2013-06-14 10:58:41
|
Hi , Is it only useful for standalone application? Does it support any other OS than Linux? |
|
From: <pa...@fr...> - 2013-06-14 12:19:14
|
----- Original Message ----- > Hi , > > Is it only useful for standalone application? Does it support any > other OS than Linux? Hi It's best with an application compiled with debug information. Other OSes - Mac OS X, Free BSD and Solaris that I've used with varying degrees of success. A+ Paul |
|
From: John R. <jr...@bi...> - 2013-06-14 14:13:58
|
>> Is it [valgrind] only useful for standalone application? > It's best with an application compiled with debug information. ... and dynamically linked (uses ld-linux.so and libc.so at run time.) -- |