mirror of
https://github.com/sheumann/hush.git
synced 2024-11-05 06:07:00 +00:00
41e1dc3f8b
trylink deleted empty linker stderr on success
19 lines
354 B
Bash
Executable File
19 lines
354 B
Bash
Executable File
#!/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 "" "$@"
|
|
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
|