xref: /xnu-8792.61.2/config/generate_linker_exports.sh (revision 42e220869062b56f8d7d0726fd4c88954f87902c)
1#!/bin/sh
2
3set -e
4
5if [ $# -lt 2 ]; then
6    echo "Usage: $0 output.exp input1 [input2 ... ]" 1>&2
7    exit 1
8fi
9
10OUTPUT="$1"
11shift
12
13# Note: we used to export both sides of the alias since forever
14# for now keep doing this
15
16( grep -h -v ":" "$@"; grep -h ":" "$@" | awk -F: '{print $1; print $2}' ) | sort -u > "$OUTPUT"
17
18exit 0
19