Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Side by Side Diff: tools/mac-nm

Issue 155437: Implement shared libraries logging on Mac OS X, added required support in Tick Processor. (Closed)
Patch Set: Created 11 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 #!/bin/sh
2
3 if [ "`which c++filt`" == "" ]; then
4 nm $@
5 else
6 nm $@ | c++filt -p -i
iposva 2009/07/13 20:18:21 How about adding comments what the parameters to c
Mikhail Naganov 2009/07/14 05:00:42 Added comments.
7 fi
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698