Implement program for finding start of zip content

This commit is contained in:
Justine Tunney 2023-01-06 19:55:00 -08:00
parent b38a442386
commit 5dab97b6d4
No known key found for this signature in database
GPG key ID: BE714B4575D6E328
4 changed files with 82 additions and 5 deletions

View file

@ -90,9 +90,9 @@ done
if [ "$HAS_E" = "1" ]; then
set -- $CPPFLAGS "$@"
elif [ "$HAS_C" = "1" ]; then
set -- $CFLAGS $CPPFLAGS "$@" -fno-omit-frame-pointer
set -- $CFLAGS $CPPFLAGS "$@" -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer
else
set -- $LDFLAGS $CPPFLAGS "$@" $LDLIBS
set -- $LDFLAGS $CPPFLAGS "$@" $LDLIBS -Wl,-z,common-page-size=4096 -Wl,-z,max-page-size=4096
fi
set -- "$CC" "$@"