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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: tools/mac-nm
diff --git a/tools/mac-nm b/tools/mac-nm
new file mode 100755
index 0000000000000000000000000000000000000000..4fdb2af4924cb8e885a9eaf441ab7b9064873d89
--- /dev/null
+++ b/tools/mac-nm
@@ -0,0 +1,7 @@
+#!/bin/sh
+
+if [ "`which c++filt`" == "" ]; then
+ nm $@
+else
+ 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.
+fi

Powered by Google App Engine
This is Rietveld 408576698