Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

configure.ac: add --disable-exec-static-tramp flag #647

Merged
merged 1 commit into from Jun 27, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions configure.ac
Expand Up @@ -366,6 +366,10 @@ AC_ARG_ENABLE(raw-api,
AC_DEFINE(FFI_NO_RAW_API, 1, [Define this if you do not want support for the raw API.])
fi)

AC_ARG_ENABLE(exec-static-tramp,
[ --disable-exec-static-tramp disable use of static exec trampolines (enabled by default)])

if test "$enable_exec_static_tramp" != no; then
case "$target" in
*-cygwin*)
;;
Expand All @@ -374,6 +378,7 @@ case "$target" in
[Define this if you want statically defined trampolines])
;;
esac
fi

AC_ARG_ENABLE(purify-safety,
[ --enable-purify-safety purify-safe mode],
Expand Down