Allocate explicit stack on aarch64

This commit is contained in:
Justine Tunney 2023-08-15 04:40:19 -07:00
parent 0e586c834a
commit de3f3a9e5a
No known key found for this signature in database
GPG key ID: BE714B4575D6E328
10 changed files with 144 additions and 74 deletions

View file

@ -0,0 +1,15 @@
#!/bin/sh
FIRST=1
for x; do
if [ $FIRST -eq 1 ]; then
set --
FIRST=0
fi
if [ x"$x" = x"-s" ]; then
continue
fi
set -- "$@" "$x"
done
exec install "$@"

3
bin/apelink Executable file
View file

@ -0,0 +1,3 @@
#!/bin/sh
COSMO=${COSMO:-/opt/cosmo}
exec "$COSMO/o//tool/build/apelink.com" "$@"

View file

@ -0,0 +1,15 @@
#!/bin/sh
FIRST=1
for x; do
if [ $FIRST -eq 1 ]; then
set --
FIRST=0
fi
if [ x"$x" = x"-s" ]; then
continue
fi
set -- "$@" "$x"
done
exec install "$@"