From owner-svn-src-projects@freebsd.org Mon Dec 25 13:17:30 2017 Return-Path: Delivered-To: svn-src-projects@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7C73CE8AABF for ; Mon, 25 Dec 2017 13:17:30 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4676D63FFA; Mon, 25 Dec 2017 13:17:30 +0000 (UTC) (envelope-from dim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vBPDHTC6089689; Mon, 25 Dec 2017 13:17:29 GMT (envelope-from dim@FreeBSD.org) Received: (from dim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vBPDHTPe089688; Mon, 25 Dec 2017 13:17:29 GMT (envelope-from dim@FreeBSD.org) Message-Id: <201712251317.vBPDHTPe089688@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dim set sender to dim@FreeBSD.org using -f From: Dimitry Andric Date: Mon, 25 Dec 2017 13:17:29 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r327174 - projects/clang600-import/lib/libclang_rt X-SVN-Group: projects X-SVN-Commit-Author: dim X-SVN-Commit-Paths: projects/clang600-import/lib/libclang_rt X-SVN-Commit-Revision: 327174 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 25 Dec 2017 13:17:30 -0000 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