svn commit: r346578 - head/lib/libclang_rt

Enji Cooper ngie at FreeBSD.org
Tue Sep 3 14:08:17 UTC 2019


Author: ngie
Date: Mon Apr 22 19:21:35 2019
New Revision: 346578
URL: https://svnweb.freebsd.org/changeset/base/346578

Log:
  Build libclang_rt/profile on all clang-supported architectures
  
  There's no reason why a special case needs to be added specifically for amd64,
  arm, and i386, as the code is written in machine architecture agnostic C/C++.
  
  This will make it possible for all supporting clang architectures to produce
  runtime coverage with `--coverage`.
  
  MFC after:	2 weeks
  Reviewed by:	dim
  Differential Revision: https://reviews.freebsd.org/D20003

Modified:
  head/lib/libclang_rt/Makefile

Modified: head/lib/libclang_rt/Makefile
==============================================================================
--- head/lib/libclang_rt/Makefile	Mon Apr 22 18:43:43 2019	(r346577)
+++ head/lib/libclang_rt/Makefile	Mon Apr 22 19:21:35 2019	(r346578)
@@ -22,9 +22,6 @@ SUBDIR+=	ubsan_standalone
 SUBDIR+=	ubsan_standalone_cxx
 .endif
 
-.if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64" || \
-    ${MACHINE_CPUARCH} == "arm"
 SUBDIR+=	profile
-.endif
 
 .include <bsd.subdir.mk>




More information about the svn-src-all mailing list