blob: 9f10c620f7a249648dd84b1be1df324c86477910 [file] [log] [blame]
Manuel Pégourié-Gonnard3385cf42015-04-02 17:59:30 +01001#!/bin/sh
2
3set -eu
4
5if grep -i cmake Makefile >/dev/null; then
6 echo "not compatible with cmake" >&2
7 exit 1
8fi
9
10cp include/mbedtls/config.h{,.bak}
11scripts/config.pl full
12CFLAGS=-fno-asynchronous-unwind-tables make clean lib >/dev/null 2>&1
13mv include/mbedtls/config.h{.bak,}
14nm -gUj library/libmbedtls.a 2>/dev/null | sed -n -e 's/^_//p' | sort > exported-symbols
15make clean
16
17wc -l exported-symbols