xref: /xnu-8020.140.41/config/generate_linker_exports.sh (revision 27b03b360a988dfd3dfdf34262bb0042026747cc)
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