Module Name: src
Committed By: rin
Date: Tue Jul 2 04:51:41 UTC 2024
Modified Files:
src/external/gpl3/gcc.old/lib: Makefile
Log Message:
gcc.old: Skip sanitizers for `MKGCCCMDS=no` as done for gcc
To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/external/gpl3/gcc.old/lib/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/external/gpl3/gcc.old/lib/Makefile
diff -u src/external/gpl3/gcc.old/lib/Makefile:1.11 src/external/gpl3/gcc.old/lib/Makefile:1.12
--- src/external/gpl3/gcc.old/lib/Makefile:1.11 Mon Feb 20 02:11:57 2023
+++ src/external/gpl3/gcc.old/lib/Makefile Tue Jul 2 04:51:41 2024
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.11 2023/02/20 02:11:57 mrg Exp $
+# $NetBSD: Makefile,v 1.12 2024/07/02 04:51:41 rin Exp $
.include <bsd.own.mk>
@@ -11,6 +11,7 @@ SUBDIR+= liblto_plugin
.if (${MKLIBSTDCXX} != "no") && (${MKCXX} != "no")
SUBDIR+= libsupc++ libstdc++-v3
+.if ${MKGCCCMDS} != "no"
SUBDIR+= .WAIT libasan liblsan libubsan
# TSan does not work with 32bit address space and has not been ported
@@ -18,6 +19,7 @@ SUBDIR+= .WAIT libasan liblsan libubsan
.if ${MACHINE} == "amd64"
SUBDIR+= libtsan
.endif
+.endif
.endif