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

debug=false

try() {
    added="$1"
    shift
    $debug && echo "Trying: $* $added"
    "$@" $added >busybox.map 2>busybox_ld.err \
    && { rm busybox_ld.err; exit 0; }
}

try "-lws2_32" "$@"
try "" "$@"
try "-lm" "$@"
try "-lcrypt" "$@"
try "-Wl,--start-group -lcrypt -lm -Wl,--end-group" "$@"
# It failed. Let people see the error messages
cat busybox_ld.err