mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 20:53:48 +00:00
28 lines
742 B
Diff
28 lines
742 B
Diff
--- a/test/run
|
|
+++ b/test/run
|
|
@@ -148,21 +148,17 @@ file_size() {
|
|
objdump_cmd() {
|
|
local file="$1"
|
|
|
|
- if $HOST_OS_APPLE; then
|
|
- xcrun dwarfdump -r 0 "$file"
|
|
- elif $HOST_OS_WINDOWS || $HOST_OS_CYGWIN; then
|
|
+ if $HOST_OS_WINDOWS || $HOST_OS_CYGWIN; then
|
|
# For some reason objdump only shows the basename of the file, so fall
|
|
# back to brute force and ignorance.
|
|
strings "$1"
|
|
else
|
|
- objdump -W "$file"
|
|
+ @objdump@ -W "$file"
|
|
fi
|
|
}
|
|
|
|
objdump_grep_cmd() {
|
|
- if $HOST_OS_APPLE; then
|
|
- fgrep -q "\"$1\""
|
|
- elif $HOST_OS_WINDOWS || $HOST_OS_CYGWIN; then
|
|
+ if $HOST_OS_WINDOWS || $HOST_OS_CYGWIN; then
|
|
fgrep -q "$1"
|
|
else
|
|
fgrep -q ": $1"
|