aboutsummaryrefslogtreecommitdiff
path: root/scripts/trylink
blob: dfe282db56b094210bab8d7371418e67b3e71d36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

debug=false

function try {
    added="$1"
    shift
    $debug && echo "Trying: $* $added"
    "$@" $added >/dev/null 2>&1 \
    && exit 0
}

try "" "$@"
try "-lm" "$@"
try "-lcrypt" "$@"
try "-Wl,--start-group -lcrypt -lm -Wl,--end-group" "$@"
# It failed. Rerun & let people see the error messages
"$@" $added