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 |