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
This commit is contained in:
Enji Cooper 2019-04-22 19:21:35 +00:00
parent db933d76bb
commit 613d28127b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=346578

View File

@ -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>