Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to use valgrind massif to figure out the heap memory used by 7-Zip. When I run massif on 7-Zip, it produces no output. Here's the command.

valgrind --tool=massif /usr/bin/7z a filename.7z filename

I would expect an output file named massif.out.pid within the current directory but no such output is produced. I should add that, using massif on other compression tools like gzip, bzip2, compress, etc. produces a massif.out.pid file.

I also used valgrind -v and there is no helpful information there either.

Any thoughts on why this doesn't work for 7-Zip?

share|improve this question

1 Answer

up vote 1 down vote accepted

/usr/bin/7z is a wrapper script.

#! /bin/sh
exec /usr/lib/p7zip/7z "$@"

Try running

valgrind --tool=massif /usr/lib/p7zip/7z a filename.7z filename

instead.

share|improve this answer
Yes it works, didn't realise it was a /usr/bin/7z is a shell script. It also explains why when you do valgrind --tool=massif 7z a filename.7z filename it gives the error /bin/sh: Can't open 7z. Thanks @Mikel. – skuruppu Apr 30 '11 at 4:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.