diff options
Diffstat (limited to 'gnattools/configure')
-rwxr-xr-x | gnattools/configure | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnattools/configure b/gnattools/configure index 6cdfbe6..1eb0deb 100755 --- a/gnattools/configure +++ b/gnattools/configure @@ -585,6 +585,8 @@ ac_unique_file="Makefile.in" ac_subst_vars='LTLIBOBJS LIBOBJS default_gnattools_target +LD_PICFLAG +PICFLAG warn_cflags OBJEXT EXEEXT @@ -657,6 +659,8 @@ ac_subst_files='' ac_user_opts=' enable_option_checking enable_maintainer_mode +enable_host_pie +enable_host_bind_now ' ac_precious_vars='build_alias host_alias @@ -1281,6 +1285,8 @@ Optional Features: --enable-maintainer-mode enable make rules and dependencies not useful (and sometimes confusing) to the casual installer + --enable-host-pie build host code as PIE + --enable-host-bind-now link host code as BIND_NOW Some influential environment variables: CC C compiler command @@ -2884,6 +2890,24 @@ if test "x$GCC" = "xyes"; then fi +# Enable --enable-host-pie +# Check whether --enable-host-pie was given. +if test "${enable_host_pie+set}" = set; then : + enableval=$enable_host_pie; PICFLAG=-fPIE; LD_PICFLAG=-pie +else + PICFLAG=-fno-PIE; LD_PICFLAG=-no-pie +fi + + + +# Enable --enable-host-bind-now +# Check whether --enable-host-bind-now was given. +if test "${enable_host_bind_now+set}" = set; then : + enableval=$enable_host_bind_now; LD_PICFLAG="$LD_PICFLAG -Wl,-z,now" +fi + + + # Determine what to build for 'gnattools'. Test after the above, # because testing for CC sets the final value of cross_compiling, even # if we end up using a different CC. We want to build |