Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 9 May 2019 17:02:41 +0000 (UTC)
From:      Enji Cooper <ngie@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org
Subject:   svn commit: r347396 - stable/11/lib/libclang_rt
Message-ID:  <201905091702.x49H2fUo034926@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ngie
Date: Thu May  9 17:02:40 2019
New Revision: 347396
URL: https://svnweb.freebsd.org/changeset/base/347396

Log:
  MFC r346578:
  
  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`.

Modified:
  stable/11/lib/libclang_rt/Makefile
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/lib/libclang_rt/Makefile
==============================================================================
--- stable/11/lib/libclang_rt/Makefile	Thu May  9 16:25:01 2019	(r347395)
+++ stable/11/lib/libclang_rt/Makefile	Thu May  9 17:02:40 2019	(r347396)
@@ -24,9 +24,6 @@ SUBDIR+=	ubsan_standalone
 SUBDIR+=	ubsan_standalone_cxx
 .endif
 
-.if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64" || \
-    (${MACHINE_CPUARCH} == "arm" && ${MACHINE_ARCH} != "armeb")
 SUBDIR+=	profile
-.endif
 
 .include <bsd.subdir.mk>



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