mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-03-10 19:06:24 +00:00
8 lines
209 B
Text
8 lines
209 B
Text
|
#!/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
|