Module Name: src
Committed By: rillig
Date: Tue May 4 17:23:54 UTC 2021
Modified Files:
src/external/bsd/compiler_rt/lib/clang/lib/netbsd/asan-m64: Makefile
src/external/bsd/compiler_rt/lib/clang/lib/netbsd/asan_cxx-m64:
Makefile
src/external/bsd/compiler_rt/lib/clang/lib/netbsd/msan-m64: Makefile
src/external/bsd/compiler_rt/lib/clang/lib/netbsd/msan_cxx-m64:
Makefile
src/external/bsd/compiler_rt/lib/clang/lib/netbsd/tsan-m64: Makefile
src/external/bsd/compiler_rt/lib/clang/lib/netbsd/tsan_cxx-m64:
Makefile
src/external/bsd/compiler_rt/lib/clang/lib/netbsd/ubsan_minimal-m64:
Makefile
src/external/bsd/compiler_rt/lib/clang/lib/netbsd/ubsan_standalone-m64:
Makefile
src/external/bsd/compiler_rt/lib/clang/lib/netbsd/ubsan_standalone_cxx-m64:
Makefile
Log Message:
compiler_rt: build .a.syms files as part of dependall
The previous target 'all' is a top-level target intended to be specified
by the user. During the regular build, 'dependall' is used instead of
'all'. The target 'realall' is common to those two.
To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 \
src/external/bsd/compiler_rt/lib/clang/lib/netbsd/asan-m64/Makefile
cvs rdiff -u -r1.5 -r1.6 \
src/external/bsd/compiler_rt/lib/clang/lib/netbsd/asan_cxx-m64/Makefile
cvs rdiff -u -r1.5 -r1.6 \
src/external/bsd/compiler_rt/lib/clang/lib/netbsd/msan-m64/Makefile
cvs rdiff -u -r1.5 -r1.6 \
src/external/bsd/compiler_rt/lib/clang/lib/netbsd/msan_cxx-m64/Makefile
cvs rdiff -u -r1.5 -r1.6 \
src/external/bsd/compiler_rt/lib/clang/lib/netbsd/tsan-m64/Makefile
cvs rdiff -u -r1.5 -r1.6 \
src/external/bsd/compiler_rt/lib/clang/lib/netbsd/tsan_cxx-m64/Makefile
cvs rdiff -u -r1.5 -r1.6 \
src/external/bsd/compiler_rt/lib/clang/lib/netbsd/ubsan_minimal-m64/Makefile
cvs rdiff -u -r1.5 -r1.6 \
src/external/bsd/compiler_rt/lib/clang/lib/netbsd/ubsan_standalone-m64/Makefile
cvs rdiff -u -r1.5 -r1.6 \
src/external/bsd/compiler_rt/lib/clang/lib/netbsd/ubsan_standalone_cxx-m64/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/bsd/compiler_rt/lib/clang/lib/netbsd/asan-m64/Makefile
diff -u src/external/bsd/compiler_rt/lib/clang/lib/netbsd/asan-m64/Makefile:1.5 src/external/bsd/compiler_rt/lib/clang/lib/netbsd/asan-m64/Makefile:1.6
--- src/external/bsd/compiler_rt/lib/clang/lib/netbsd/asan-m64/Makefile:1.5 Fri Apr 30 22:48:37 2021
+++ src/external/bsd/compiler_rt/lib/clang/lib/netbsd/asan-m64/Makefile Tue May 4 17:23:53 2021
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.5 2021/04/30 22:48:37 rillig Exp $
+# $NetBSD: Makefile,v 1.6 2021/05/04 17:23:53 rillig Exp $
NOSANITIZER= # defined
@@ -57,7 +57,7 @@ COPTS+= -fPIC
SYMS= libclang_rt.asan-x86_64.a.syms
SYMS_EXTRA= ${TOPDIR}/lib/asan/asan.syms.extra
-all: ${SYMS}
+realall: ${SYMS}
CLEANFILES+= ${SYMS}
FILES= ${SYMS}
Index: src/external/bsd/compiler_rt/lib/clang/lib/netbsd/asan_cxx-m64/Makefile
diff -u src/external/bsd/compiler_rt/lib/clang/lib/netbsd/asan_cxx-m64/Makefile:1.5 src/external/bsd/compiler_rt/lib/clang/lib/netbsd/asan_cxx-m64/Makefile:1.6
--- src/external/bsd/compiler_rt/lib/clang/lib/netbsd/asan_cxx-m64/Makefile:1.5 Fri Apr 30 22:48:37 2021
+++ src/external/bsd/compiler_rt/lib/clang/lib/netbsd/asan_cxx-m64/Makefile Tue May 4 17:23:53 2021
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.5 2021/04/30 22:48:37 rillig Exp $
+# $NetBSD: Makefile,v 1.6 2021/05/04 17:23:53 rillig Exp $
NOSANITIZER= # defined
@@ -40,7 +40,7 @@ COPTS+= -fPIC
SYMS= libclang_rt.asan_cxx-x86_64.a.syms
SYMS_EXTRA= ${TOPDIR}/lib/asan/asan.syms.extra # Overlooked in upstream compiler-rt (8.0) ?
-all: ${SYMS}
+realall: ${SYMS}
CLEANFILES+= ${SYMS}
FILES= ${SYMS}
Index: src/external/bsd/compiler_rt/lib/clang/lib/netbsd/msan-m64/Makefile
diff -u src/external/bsd/compiler_rt/lib/clang/lib/netbsd/msan-m64/Makefile:1.5 src/external/bsd/compiler_rt/lib/clang/lib/netbsd/msan-m64/Makefile:1.6
--- src/external/bsd/compiler_rt/lib/clang/lib/netbsd/msan-m64/Makefile:1.5 Fri Apr 30 22:48:37 2021
+++ src/external/bsd/compiler_rt/lib/clang/lib/netbsd/msan-m64/Makefile Tue May 4 17:23:54 2021
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.5 2021/04/30 22:48:37 rillig Exp $
+# $NetBSD: Makefile,v 1.6 2021/05/04 17:23:54 rillig Exp $
NOSANITIZER= # defined
@@ -52,7 +52,7 @@ COPTS+= -fPIC
SYMS= libclang_rt.msan-x86_64.a.syms
SYMS_EXTRA= ${TOPDIR}/lib/msan/msan.syms.extra
-all: ${SYMS}
+realall: ${SYMS}
CLEANFILES+= ${SYMS}
FILES= ${SYMS}
Index: src/external/bsd/compiler_rt/lib/clang/lib/netbsd/msan_cxx-m64/Makefile
diff -u src/external/bsd/compiler_rt/lib/clang/lib/netbsd/msan_cxx-m64/Makefile:1.5 src/external/bsd/compiler_rt/lib/clang/lib/netbsd/msan_cxx-m64/Makefile:1.6
--- src/external/bsd/compiler_rt/lib/clang/lib/netbsd/msan_cxx-m64/Makefile:1.5 Fri Apr 30 22:48:37 2021
+++ src/external/bsd/compiler_rt/lib/clang/lib/netbsd/msan_cxx-m64/Makefile Tue May 4 17:23:54 2021
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.5 2021/04/30 22:48:37 rillig Exp $
+# $NetBSD: Makefile,v 1.6 2021/05/04 17:23:54 rillig Exp $
NOSANITIZER= # defined
@@ -41,7 +41,7 @@ COPTS+= -fPIC
SYMS= libclang_rt.msan_cxx-x86_64.a.syms
SYMS_EXTRA= ${TOPDIR}/lib/msan/msan.syms.extra
-all: ${SYMS}
+realall: ${SYMS}
CLEANFILES+= ${SYMS}
FILES= ${SYMS}
Index: src/external/bsd/compiler_rt/lib/clang/lib/netbsd/tsan-m64/Makefile
diff -u src/external/bsd/compiler_rt/lib/clang/lib/netbsd/tsan-m64/Makefile:1.5 src/external/bsd/compiler_rt/lib/clang/lib/netbsd/tsan-m64/Makefile:1.6
--- src/external/bsd/compiler_rt/lib/clang/lib/netbsd/tsan-m64/Makefile:1.5 Fri Apr 30 22:48:37 2021
+++ src/external/bsd/compiler_rt/lib/clang/lib/netbsd/tsan-m64/Makefile Tue May 4 17:23:54 2021
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.5 2021/04/30 22:48:37 rillig Exp $
+# $NetBSD: Makefile,v 1.6 2021/05/04 17:23:54 rillig Exp $
NOSANITIZER= # defined
@@ -52,7 +52,7 @@ CPPFLAGS+= -I${TOPDIR}/lib
SYMS= libclang_rt.tsan-x86_64.a.syms
SYMS_EXTRA= ${TOPDIR}/lib/tsan/rtl/tsan.syms.extra
-all: ${SYMS}
+realall: ${SYMS}
CLEANFILES+= ${SYMS}
FILES= ${SYMS}
Index: src/external/bsd/compiler_rt/lib/clang/lib/netbsd/tsan_cxx-m64/Makefile
diff -u src/external/bsd/compiler_rt/lib/clang/lib/netbsd/tsan_cxx-m64/Makefile:1.5 src/external/bsd/compiler_rt/lib/clang/lib/netbsd/tsan_cxx-m64/Makefile:1.6
--- src/external/bsd/compiler_rt/lib/clang/lib/netbsd/tsan_cxx-m64/Makefile:1.5 Fri Apr 30 22:48:37 2021
+++ src/external/bsd/compiler_rt/lib/clang/lib/netbsd/tsan_cxx-m64/Makefile Tue May 4 17:23:54 2021
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.5 2021/04/30 22:48:37 rillig Exp $
+# $NetBSD: Makefile,v 1.6 2021/05/04 17:23:54 rillig Exp $
NOSANITIZER= # defined
@@ -40,7 +40,7 @@ CPPFLAGS+= -I${TOPDIR}/lib
SYMS= libclang_rt.tsan_cxx-x86_64.a.syms
SYMS_EXTRA= ${TOPDIR}/lib/tsan/rtl/tsan.syms.extra
-all: ${SYMS}
+realall: ${SYMS}
CLEANFILES+= ${SYMS}
FILES= ${SYMS}
Index: src/external/bsd/compiler_rt/lib/clang/lib/netbsd/ubsan_minimal-m64/Makefile
diff -u src/external/bsd/compiler_rt/lib/clang/lib/netbsd/ubsan_minimal-m64/Makefile:1.5 src/external/bsd/compiler_rt/lib/clang/lib/netbsd/ubsan_minimal-m64/Makefile:1.6
--- src/external/bsd/compiler_rt/lib/clang/lib/netbsd/ubsan_minimal-m64/Makefile:1.5 Fri Apr 30 22:48:38 2021
+++ src/external/bsd/compiler_rt/lib/clang/lib/netbsd/ubsan_minimal-m64/Makefile Tue May 4 17:23:54 2021
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.5 2021/04/30 22:48:38 rillig Exp $
+# $NetBSD: Makefile,v 1.6 2021/05/04 17:23:54 rillig Exp $
NOSANITIZER= # defined
@@ -36,7 +36,7 @@ CPPFLAGS+= -I${TOPDIR}/lib
SYMS= libclang_rt.ubsan_minimal-x86_64.a.syms
SYMS_EXTRA= ${TOPDIR}/lib/ubsan_minimal/ubsan.syms.extra
-all: ${SYMS}
+realall: ${SYMS}
CLEANFILES+= ${SYMS}
FILES= ${SYMS}
Index: src/external/bsd/compiler_rt/lib/clang/lib/netbsd/ubsan_standalone-m64/Makefile
diff -u src/external/bsd/compiler_rt/lib/clang/lib/netbsd/ubsan_standalone-m64/Makefile:1.5 src/external/bsd/compiler_rt/lib/clang/lib/netbsd/ubsan_standalone-m64/Makefile:1.6
--- src/external/bsd/compiler_rt/lib/clang/lib/netbsd/ubsan_standalone-m64/Makefile:1.5 Fri Apr 30 22:48:38 2021
+++ src/external/bsd/compiler_rt/lib/clang/lib/netbsd/ubsan_standalone-m64/Makefile Tue May 4 17:23:54 2021
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.5 2021/04/30 22:48:38 rillig Exp $
+# $NetBSD: Makefile,v 1.6 2021/05/04 17:23:54 rillig Exp $
NOSANITIZER= # defined
@@ -50,7 +50,7 @@ CPPFLAGS+= -I${TOPDIR}/lib
SYMS= libclang_rt.ubsan_standalone-x86_64.a.syms
SYMS_EXTRA= ${TOPDIR}/lib/ubsan/ubsan.syms.extra
-all: ${SYMS}
+realall: ${SYMS}
CLEANFILES+= ${SYMS}
FILES= ${SYMS}
Index: src/external/bsd/compiler_rt/lib/clang/lib/netbsd/ubsan_standalone_cxx-m64/Makefile
diff -u src/external/bsd/compiler_rt/lib/clang/lib/netbsd/ubsan_standalone_cxx-m64/Makefile:1.5 src/external/bsd/compiler_rt/lib/clang/lib/netbsd/ubsan_standalone_cxx-m64/Makefile:1.6
--- src/external/bsd/compiler_rt/lib/clang/lib/netbsd/ubsan_standalone_cxx-m64/Makefile:1.5 Fri Apr 30 22:48:38 2021
+++ src/external/bsd/compiler_rt/lib/clang/lib/netbsd/ubsan_standalone_cxx-m64/Makefile Tue May 4 17:23:54 2021
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.5 2021/04/30 22:48:38 rillig Exp $
+# $NetBSD: Makefile,v 1.6 2021/05/04 17:23:54 rillig Exp $
NOSANITIZER= # defined
@@ -36,7 +36,7 @@ CPPFLAGS+= -I${TOPDIR}/lib
SYMS= libclang_rt.ubsan_standalone_cxx-x86_64.a.syms
SYMS_EXTRA= ${TOPDIR}/lib/ubsan/ubsan.syms.extra
-all: ${SYMS}
+realall: ${SYMS}
CLEANFILES+= ${SYMS}
FILES= ${SYMS}