summaryrefslogtreecommitdiff
path: root/scripts/find_stray_communal_vars
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/find_stray_communal_vars')
-rwxr-xr-xscripts/find_stray_communal_vars10
1 files changed, 10 insertions, 0 deletions
diff --git a/scripts/find_stray_communal_vars b/scripts/find_stray_communal_vars
new file mode 100755
index 0000000..9f999d7
--- /dev/null
+++ b/scripts/find_stray_communal_vars
@@ -0,0 +1,10 @@
+#!/bin/sh
+
+# Communal variables are elusize, then don't show in size output!
+# This script will show all communals in *.o, sorted by size
+
+find -name '*.o' \
+| while read name; do
+ b=`basename "$name"`
+ nm "$name" | sed "s/^/$b: /"
+done | grep -i ' c ' | sort -k2