mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 03:27:39 +00:00
7 lines
209 B
Bash
Executable file
7 lines
209 B
Bash
Executable file
#!/bin/sh
|
|
for last; do true; done
|
|
if grep aarch64 "$last" >/dev/null 2>&1; then
|
|
exec o/third_party/gcc/bin/aarch64-linux-musl-objdump "$@"
|
|
else
|
|
exec o/third_party/gcc/bin/x86_64-linux-musl-objdump "$@"
|
|
fi
|