From: Jonatan Schlag <jonatan.schlag@ipfire.org>
To: location@lists.ipfire.org
Subject: [PATCH 2/2] Add configure option for asan
Date: Sat, 06 Mar 2021 19:55:05 +0100 [thread overview]
Message-ID: <20210306185505.162118-2-jonatan.schlag@ipfire.org> (raw)
In-Reply-To: <20210306185505.162118-1-jonatan.schlag@ipfire.org>
[-- Attachment #1: Type: text/plain, Size: 1520 bytes --]
Signed-off-by: Jonatan Schlag <jonatan.schlag(a)ipfire.org>
---
Makefile.am | 3 ++-
configure.ac | 26 ++++++++++++++++++++++++++
2 files changed, 28 insertions(+), 1 deletion(-)
diff --git a/Makefile.am b/Makefile.am
index 0c2f78c..7782354 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -19,11 +19,12 @@ AM_CPPFLAGS = \
-I${top_srcdir}/src
AM_CFLAGS = ${warn_CFLAGS} \
+ ${asan_CFLAGS} \
${my_CFLAGS} \
-ffunction-sections \
-fdata-sections
-AM_LDFLAGS =
+AM_LDFLAGS = ${asan_LDFLAGS}
# leaving a space here to work around automake's conditionals
ifeq ($(OS),Darwin)
diff --git a/configure.ac b/configure.ac
index dd1ca64..6a4ee0c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -104,6 +104,32 @@ AS_IF([test "x$more_warnings" = "xyes"],[
AC_SUBST([warn_CFLAGS])
+# - asan -----------------------------------------------------------------------
+
+asan_CFLAGS=""
+asan_LDFLAGS=""
+
+AC_ARG_ENABLE([asan],
+ AS_HELP_STRING([--enable-asan], [enable the address sanitizer @<:@default=disabled@:>@]),
+ [asan=yes], [asan=no])
+AS_IF([test "x$asan" = "xyes"],[
+ asan_CFLAGS+="\
+ -g \
+ -fsanitize=address \
+ -fno-omit-frame-pointer \
+ -fsanitize-recover=address \
+ "
+
+ asan_LDFLAGS+="\
+ -fsanitize=address \
+ "
+])
+
+AC_SUBST([asan_CFLAGS])
+AC_SUBST([asan_LDFLAGS])
+
+# ------------------------------------------------------------------------------
+
my_CFLAGS="\
-Wall \
-Wchar-subscripts \
--
2.30.1
next prev parent reply other threads:[~2021-03-06 18:55 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-03-06 18:55 [PATCH 1/2] Add configure option for fanalyzer Jonatan Schlag
2021-03-06 18:55 ` Jonatan Schlag [this message]
2021-03-06 19:04 ` [PATCH 2/2] Add configure option for asan Jonatan Schlag
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20210306185505.162118-2-jonatan.schlag@ipfire.org \
--to=jonatan.schlag@ipfire.org \
--cc=location@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox