Files
mongo/dist/s_funcs
Keith Bostic d3a8060e5b WT-2658 Only include PPC-specific files in PPC builds (#2758)
* WT-2658 Only include PPC-specific files in PPC builds

* Add support for conditional file inclusion by adding a second argument on lines in dist/filelist.  Add a new automake conditional, POWERPC_HOST, set for the various PPC host CPUs.  Change dist/filelist to only compile the checksum/power8 files if POWERPC_HOST is set.

* Merge the Windows and POSIX file lists, use POSIX_HOST and WINDOWS_HOST to mark source files needed for builds on those systems.
2016-06-03 12:54:40 +10:00

30 lines
783 B
Bash
Executable File

#! /bin/sh
# Complain about unused functions
t=__wt.$$
trap 'rm -f $t; exit 0' 0 1 2 3 13 15
# List of files to search.
l=`sed -e '/^[a-z]/!d' -e 's/[ ].*$//' -e 's,^,../,' filelist`
l="$l `echo ../src/*/*.i ../src/utilities/*.c ../bench/wtperf/*.c`"
(
# Copy out the functions we don't use, but it's OK.
sed -e '/^$/d' -e '/^#/d' < s_funcs.list
# Get the list of functions
search=`egrep -h '^[a-zA-Z0-9_][a-zA-Z0-9_]*\(' $l | sed -e 's/(.*//' | sort -u`
# Print the list of functions, followed by the occurrences: we're looking for
# functions that only appear once
echo "$search"
sed -n '/{/,/^}/p' $l | fgrep -wo "$search"
sed -n '/^#define/,/[^\\]$/p' ../src/include/*.h ../src/include/*.in |
fgrep -who "$search"
) | sort | uniq -u > $t
test -s $t && cat $t
exit 0