diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2022-04-18 18:26:40 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2022-05-16 21:56:21 +0000 |
commit | c1e0431c2202faa178642c8b54e545df3ed44f5f (patch) | |
tree | 8946f911def722a596331d2cb4c090dab450e170 | |
parent | 3020bfe1b8f53d70aa110b72227fa64f678e7307 (diff) | |
download | src-c1e0431c2202faa178642c8b54e545df3ed44f5f.tar.gz src-c1e0431c2202faa178642c8b54e545df3ed44f5f.zip |
riscv: also enable includes, stats and stats_client in libclang_rt
Reviewed by: dim (earlier version)
Differential Revision: https://reviews.freebsd.org/D34735
MFC after: 3 days
-rw-r--r-- | lib/libclang_rt/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/libclang_rt/Makefile b/lib/libclang_rt/Makefile index fcc17310549b..0f9a123b0fba 100644 --- a/lib/libclang_rt/Makefile +++ b/lib/libclang_rt/Makefile @@ -33,10 +33,13 @@ SUBDIR+= xray-profiling .endif # amd64 .if ${MACHINE_CPUARCH} == "riscv" +SUBDIR+= include SUBDIR+= asan SUBDIR+= asan-preinit SUBDIR+= asan_cxx SUBDIR+= asan_dynamic +SUBDIR+= stats +SUBDIR+= stats_client SUBDIR+= ubsan_minimal SUBDIR+= ubsan_standalone SUBDIR+= ubsan_standalone_cxx |