diff options
author | Florian Weimer <fweimer@redhat.com> | 2022-01-14 20:16:05 +0100 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2022-01-14 20:17:15 +0100 |
commit | 9ba202c78f0aa39f49929eee63c367847da72ee4 (patch) | |
tree | e292ce37276d20fcefc97f5441bc1e4edd4d8368 /configure | |
parent | b693d75f0c611bce9b0ad984bad306121d42c535 (diff) | |
download | glibc-9ba202c78f0aa39f49929eee63c367847da72ee4.tar.gz glibc-9ba202c78f0aa39f49929eee63c367847da72ee4.tar.xz glibc-9ba202c78f0aa39f49929eee63c367847da72ee4.zip |
Add --with-rtld-early-cflags configure option
Reviewed-by: H.J. Lu <hjl.tools@gmail.com> Reviewed-by: Carlos O'Donell <carlos@redhat.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/configure b/configure index 3f956cf777..6a7e5c6164 100755 --- a/configure +++ b/configure @@ -681,6 +681,7 @@ force_install bindnow hardcoded_path_in_tests enable_timezone_tools +rtld_early_cflags extra_nonshared_cflags use_default_link sysheaders @@ -761,6 +762,7 @@ with_selinux with_headers with_default_link with_nonshared_cflags +with_rtld_early_cflags with_timeoutfactor enable_sanity_checks enable_shared @@ -1480,6 +1482,8 @@ Optional Packages: --with-default-link do not use explicit linker scripts --with-nonshared-cflags=CFLAGS build nonshared libraries with additional CFLAGS + --with-rtld-early-cflags=CFLAGS + build early initialization with additional CFLAGS --with-timeoutfactor=NUM specify an integer to scale the timeout --with-cpu=CPU select code for CPU variant @@ -3386,6 +3390,15 @@ fi +# Check whether --with-rtld-early-cflags was given. +if test "${with_rtld_early_cflags+set}" = set; then : + withval=$with_rtld_early_cflags; rtld_early_cflags=$withval +else + rtld_early_cflags= +fi + + + # Check whether --with-timeoutfactor was given. if test "${with_timeoutfactor+set}" = set; then : |