summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorCharles-François Natali <cf.natali@gmail.com>2014-05-08 22:08:51 (GMT)
committerCharles-François Natali <cf.natali@gmail.com>2014-05-08 22:08:51 (GMT)
commitd30b022b5ea1b73595b330d9d4aba36aa0ebdd29 (patch)
tree6243159ef1ee2dfae02e38b7658af7418d933e21 /configure
parentef8f7792f3763b21b452c0859660b24473e7a345 (diff)
downloadcpython-d30b022b5ea1b73595b330d9d4aba36aa0ebdd29.zip
cpython-d30b022b5ea1b73595b330d9d4aba36aa0ebdd29.tar.gz
cpython-d30b022b5ea1b73595b330d9d4aba36aa0ebdd29.tar.bz2
Issue #21037: Add a build option to enable AddressSanitizer support.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure20
1 files changed, 20 insertions, 0 deletions
diff --git a/configure b/configure
index c46fc26..fbd4c24 100755
--- a/configure
+++ b/configure
@@ -796,6 +796,7 @@ enable_shared
enable_profiling
with_pydebug
with_hash_algorithm
+with_address_sanitizer
with_libs
with_system_expat
with_system_ffi
@@ -1472,6 +1473,8 @@ Optional Packages:
--with-pydebug build with Py_DEBUG defined
--with-hash-algorithm=[fnv|siphash24]
select hash algorithm
+ --with-address-sanitizer
+ enable AddressSanitizer
--with-libs='lib1 ...' link against additional libs
--with-system-expat build pyexpat module using an installed expat
library
@@ -9154,6 +9157,23 @@ $as_echo "default" >&6; }
fi
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for --with-address-sanitizer" >&5
+$as_echo_n "checking for --with-address-sanitizer... " >&6; }
+
+# Check whether --with-address_sanitizer was given.
+if test "${with_address_sanitizer+set}" = set; then :
+ withval=$with_address_sanitizer;
+{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $withval" >&5
+$as_echo "$withval" >&6; }
+BASECFLAGS="-fsanitize=address -fno-omit-frame-pointer $BASECFLAGS"
+LDFLAGS="-fsanitize=address $LDFLAGS"
+
+else
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+fi
+
+
# Most SVR4 platforms (e.g. Solaris) need -lsocket and -lnsl.
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for t_open in -lnsl" >&5
$as_echo_n "checking for t_open in -lnsl... " >&6; }