Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 15 Apr 2024 14:05:24 GMT
From:      Mark Johnston <markj@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 99ac8acf886b - stable/14 - build: Do not pass -fno-sanitize-memory-param-retval to subr_coverage.c
Message-ID:  <202404151405.43FE5O61069707@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/14 has been updated by markj:

URL: https://cgit.FreeBSD.org/src/commit/?id=99ac8acf886bcccfb73e4695a2febb8869a29ec3

commit 99ac8acf886bcccfb73e4695a2febb8869a29ec3
Author:     Mark Johnston <markj@FreeBSD.org>
AuthorDate: 2023-12-23 00:24:48 +0000
Commit:     Mark Johnston <markj@FreeBSD.org>
CommitDate: 2024-04-15 14:05:13 +0000

    build: Do not pass -fno-sanitize-memory-param-retval to subr_coverage.c
    
    In the absence of -fsanitize=kernel-memory, the presence of this flag
    results in a -Wunused-command-line-argument warning.
    
    MFC after:      1 week
    
    (cherry picked from commit 2ae32f1f8fcc97c3e9c16effa2ee5e41a1a6c364)
---
 sys/conf/files | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys/conf/files b/sys/conf/files
index b6a85d6a86a2..0bfced5287ec 100644
--- a/sys/conf/files
+++ b/sys/conf/files
@@ -3847,7 +3847,7 @@ kern/subr_clock.c		standard
 kern/subr_compressor.c		standard \
 	compile-with "${NORMAL_C} -I$S/contrib/zstd/lib/freebsd"
 kern/subr_coverage.c		optional coverage \
-	compile-with "${NORMAL_C:N-fsanitize*}"
+	compile-with "${NORMAL_C:N-fsanitize*:N-fno-sanitize*}"
 kern/subr_counter.c		standard
 kern/subr_csan.c		optional kcsan \
 	compile-with "${NORMAL_C:N-fsanitize*:N-fstack-protector*}"



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202404151405.43FE5O61069707>