cosmopolitan/build/run

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
156 B
Text
Raw Normal View History

#!/bin/sh
UNAMEM=$(uname -m)
UNAMES=$(uname -s)
if [ x"$UNAMES" = x"Darwin" ] && [ x"$UNAMEM" = x"arm64" ]; then
exec ape "$@"
else
2024-08-27 02:59:25 +00:00
exec rusage "$@"
fi