|
From: SAPLACAN, S. (SORIN) <sor...@al...> - 2012-05-04 12:11:50
|
Hello, In our company we want to use Valgrind for memory leak using mostly Memcheck. Is there the possibility to choose what tool to install? I ask this because some test we make need Valgrind to be installed directly on the machine where the executables are and there is a space limit constraint. So we want to install only Memchek. But I couldn't find something about this in the manual. Also the person which installed Valgrind on some machines didn't figure if it is possible to install only one tool. Thank you! Best Regards, Sorin Saplacan Wireless - Methods Tools & Solutions Team (MTS) Alcatel-Lucent Romania Timisoara, Str. Gh. Lazar Nr. 9, +40 256 303100 Office: Modatim B - Str. C. Brediceanu Nr. 10 B OnNet Phone: 2570 6144 e-mail: sor...@al... |
|
From: Alexander P. <gl...@go...> - 2012-05-04 13:55:15
|
You may want to take a look at http://code.google.com/p/data-race-test/source/browse/trunk/tsan/mk-self-contained-valgrind.sh, which we're using for a similar task (although we do not have any size constraints). It creates a .sh file containing a blob with the archived binaries necessary to run a specific tool, but you can hack it to do whatever you want. On Fri, May 4, 2012 at 4:11 PM, SAPLACAN, SORIN (SORIN) <sor...@al...> wrote: > Hello, > > In our company we want to use Valgrind for memory leak using mostly > Memcheck. > > Is there the possibility to choose what tool to install? > > I ask this because some test we make need Valgrind to be installed directly > on the machine where the executables are and there is a space limit > constraint. > So we want to install only Memchek. But I couldn’t find something about this > in the manual. Also the person which installed Valgrind on some machines > didn’t figure if it is possible to install only one tool. > > Thank you! > > Best Regards, > > Sorin Saplacan > Wireless - Methods Tools & Solutions Team (MTS) > Alcatel-Lucent Romania > Timisoara, Str. Gh. Lazar Nr. 9, +40 256 303100 > Office: Modatim B - Str. C. Brediceanu Nr. 10 B > OnNet Phone: 2570 6144 > e-mail: sor...@al... > > > > ------------------------------------------------------------------------------ > Live Security Virtual Conference > Exclusive live event will cover all the ways today's security and > threat landscape has changed and how IT managers can respond. Discussions > will include endpoint security, mobile security and the latest in malware > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ > _______________________________________________ > Valgrind-users mailing list > Val...@li... > https://lists.sourceforge.net/lists/listinfo/valgrind-users > -- Alexander Potapenko Software Engineer Google Moscow |
|
From: John R. <jr...@bi...> - 2012-05-04 14:19:36
|
> *Is there the **possibility**to **choose**what tool to **install**?*
In the top-level Makefile you can name which tools you want.
Just edit these two lists, deleting the entries that you do not want:
-----
TOOLS = memcheck \
cachegrind \
callgrind \
massif \
lackey \
none \
helgrind \
drd
EXP_TOOLS = exp-sgcheck \
exp-bbv \
exp-dhat
-----
If you want this "permanently" then edit Makefile.in
before running ./autogen.sh .
--
|