Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/external/bsd/compiler_rt/lib/clang/lib/netbsd compiler_rt: b...



details:   https://anonhg.NetBSD.org/src/rev/ca6a2c88f09f
branches:  trunk
changeset: 983125:ca6a2c88f09f
user:      rillig <rillig%NetBSD.org@localhost>
date:      Tue May 04 17:23:53 2021 +0000

description:
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.

diffstat:

 external/bsd/compiler_rt/lib/clang/lib/netbsd/asan-m64/Makefile                 |  4 ++--
 external/bsd/compiler_rt/lib/clang/lib/netbsd/asan_cxx-m64/Makefile             |  4 ++--
 external/bsd/compiler_rt/lib/clang/lib/netbsd/msan-m64/Makefile                 |  4 ++--
 external/bsd/compiler_rt/lib/clang/lib/netbsd/msan_cxx-m64/Makefile             |  4 ++--
 external/bsd/compiler_rt/lib/clang/lib/netbsd/tsan-m64/Makefile                 |  4 ++--
 external/bsd/compiler_rt/lib/clang/lib/netbsd/tsan_cxx-m64/Makefile             |  4 ++--
 external/bsd/compiler_rt/lib/clang/lib/netbsd/ubsan_minimal-m64/Makefile        |  4 ++--
 external/bsd/compiler_rt/lib/clang/lib/netbsd/ubsan_standalone-m64/Makefile     |  4 ++--
 external/bsd/compiler_rt/lib/clang/lib/netbsd/ubsan_standalone_cxx-m64/Makefile |  4 ++--
 9 files changed, 18 insertions(+), 18 deletions(-)

diffs (162 lines):

diff -r 4208ab606962 -r ca6a2c88f09f external/bsd/compiler_rt/lib/clang/lib/netbsd/asan-m64/Makefile
--- a/external/bsd/compiler_rt/lib/clang/lib/netbsd/asan-m64/Makefile   Tue May 04 13:40:34 2021 +0000
+++ b/external/bsd/compiler_rt/lib/clang/lib/netbsd/asan-m64/Makefile   Tue May 04 17:23:53 2021 +0000
@@ -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 @@
 SYMS=          libclang_rt.asan-x86_64.a.syms
 SYMS_EXTRA=    ${TOPDIR}/lib/asan/asan.syms.extra
 
-all:           ${SYMS}
+realall:       ${SYMS}
 
 CLEANFILES+=   ${SYMS}
 FILES=         ${SYMS}
diff -r 4208ab606962 -r ca6a2c88f09f external/bsd/compiler_rt/lib/clang/lib/netbsd/asan_cxx-m64/Makefile
--- a/external/bsd/compiler_rt/lib/clang/lib/netbsd/asan_cxx-m64/Makefile       Tue May 04 13:40:34 2021 +0000
+++ b/external/bsd/compiler_rt/lib/clang/lib/netbsd/asan_cxx-m64/Makefile       Tue May 04 17:23:53 2021 +0000
@@ -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 @@
 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}
diff -r 4208ab606962 -r ca6a2c88f09f external/bsd/compiler_rt/lib/clang/lib/netbsd/msan-m64/Makefile
--- a/external/bsd/compiler_rt/lib/clang/lib/netbsd/msan-m64/Makefile   Tue May 04 13:40:34 2021 +0000
+++ b/external/bsd/compiler_rt/lib/clang/lib/netbsd/msan-m64/Makefile   Tue May 04 17:23:53 2021 +0000
@@ -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 @@
 SYMS=          libclang_rt.msan-x86_64.a.syms
 SYMS_EXTRA=    ${TOPDIR}/lib/msan/msan.syms.extra
 
-all:           ${SYMS}
+realall:       ${SYMS}
 
 CLEANFILES+=   ${SYMS}
 FILES=         ${SYMS}
diff -r 4208ab606962 -r ca6a2c88f09f external/bsd/compiler_rt/lib/clang/lib/netbsd/msan_cxx-m64/Makefile
--- a/external/bsd/compiler_rt/lib/clang/lib/netbsd/msan_cxx-m64/Makefile       Tue May 04 13:40:34 2021 +0000
+++ b/external/bsd/compiler_rt/lib/clang/lib/netbsd/msan_cxx-m64/Makefile       Tue May 04 17:23:53 2021 +0000
@@ -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 @@
 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}
diff -r 4208ab606962 -r ca6a2c88f09f external/bsd/compiler_rt/lib/clang/lib/netbsd/tsan-m64/Makefile
--- a/external/bsd/compiler_rt/lib/clang/lib/netbsd/tsan-m64/Makefile   Tue May 04 13:40:34 2021 +0000
+++ b/external/bsd/compiler_rt/lib/clang/lib/netbsd/tsan-m64/Makefile   Tue May 04 17:23:53 2021 +0000
@@ -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 @@
 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}
diff -r 4208ab606962 -r ca6a2c88f09f external/bsd/compiler_rt/lib/clang/lib/netbsd/tsan_cxx-m64/Makefile
--- a/external/bsd/compiler_rt/lib/clang/lib/netbsd/tsan_cxx-m64/Makefile       Tue May 04 13:40:34 2021 +0000
+++ b/external/bsd/compiler_rt/lib/clang/lib/netbsd/tsan_cxx-m64/Makefile       Tue May 04 17:23:53 2021 +0000
@@ -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 @@
 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}
diff -r 4208ab606962 -r ca6a2c88f09f external/bsd/compiler_rt/lib/clang/lib/netbsd/ubsan_minimal-m64/Makefile
--- a/external/bsd/compiler_rt/lib/clang/lib/netbsd/ubsan_minimal-m64/Makefile  Tue May 04 13:40:34 2021 +0000
+++ b/external/bsd/compiler_rt/lib/clang/lib/netbsd/ubsan_minimal-m64/Makefile  Tue May 04 17:23:53 2021 +0000
@@ -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 @@
 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}
diff -r 4208ab606962 -r ca6a2c88f09f external/bsd/compiler_rt/lib/clang/lib/netbsd/ubsan_standalone-m64/Makefile
--- a/external/bsd/compiler_rt/lib/clang/lib/netbsd/ubsan_standalone-m64/Makefile       Tue May 04 13:40:34 2021 +0000
+++ b/external/bsd/compiler_rt/lib/clang/lib/netbsd/ubsan_standalone-m64/Makefile       Tue May 04 17:23:53 2021 +0000
@@ -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 @@
 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}
diff -r 4208ab606962 -r ca6a2c88f09f external/bsd/compiler_rt/lib/clang/lib/netbsd/ubsan_standalone_cxx-m64/Makefile
--- a/external/bsd/compiler_rt/lib/clang/lib/netbsd/ubsan_standalone_cxx-m64/Makefile   Tue May 04 13:40:34 2021 +0000
+++ b/external/bsd/compiler_rt/lib/clang/lib/netbsd/ubsan_standalone_cxx-m64/Makefile   Tue May 04 17:23:53 2021 +0000
@@ -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 @@
 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}



Home | Main Index | Thread Index | Old Index