From bba3cdafbbf2f609831ddc0cab8d8a348c4a8092 Mon Sep 17 00:00:00 2001 From: Dimitry Andric Date: Mon, 25 Dec 2017 13:17:29 +0000 Subject: [PATCH] Only build tsan and tsan_cxx for amd64, as 32 bit is unsupported. --- lib/libclang_rt/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/libclang_rt/Makefile b/lib/libclang_rt/Makefile index 8f5c0dc7cc22..ef8fa1ab7171 100644 --- a/lib/libclang_rt/Makefile +++ b/lib/libclang_rt/Makefile @@ -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