svn commit: r327174 - projects/clang600-import/lib/libclang_rt

Dimitry Andric dim at FreeBSD.org
Mon Dec 25 13:17:30 UTC 2017


Author: dim
Date: Mon Dec 25 13:17:29 2017
New Revision: 327174
URL: https://svnweb.freebsd.org/changeset/base/327174

Log:
  Only build tsan and tsan_cxx for amd64, as 32 bit is unsupported.

Modified:
  projects/clang600-import/lib/libclang_rt/Makefile

Modified: projects/clang600-import/lib/libclang_rt/Makefile
==============================================================================
--- projects/clang600-import/lib/libclang_rt/Makefile	Mon Dec 25 04:48:39 2017	(r327173)
+++ projects/clang600-import/lib/libclang_rt/Makefile	Mon Dec 25 13:17:29 2017	(r327174)
@@ -9,8 +9,10 @@ SUBDIR+=	asan_dynamic
 SUBDIR+=	safestack
 SUBDIR+=	stats
 SUBDIR+=	stats_client
+.if ${MACHINE_CPUARCH} == "amd64"
 SUBDIR+=	tsan
 SUBDIR+=	tsan_cxx
+.endif
 SUBDIR+=	ubsan_minimal
 SUBDIR+=	ubsan_standalone
 SUBDIR+=	ubsan_standalone_cxx


More information about the svn-src-projects mailing list