91d03e2e18
sanitizer libraries that already work on FreeBSD: * asan: Address Sanitizer * ubsan: Undefined Behavior Sanitizer * profile: Profile Guided Optimization support Please note that these libraries are *experimental* at this stage, so the main Makefile is not yet connected to the build. Since I didn't want to needlessly edit BSD.usr.dist, you will also have to create the install directory /usr/lib/clang/3.5.0/lib/freebsd manually for now.
15 lines
191 B
Makefile
15 lines
191 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.init.mk>
|
|
|
|
LIB= clang_rt.ubsan_cxx-${CRTARCH}
|
|
|
|
CXXFLAGS+=-frtti
|
|
|
|
.PATH: ${CRTSRC}/lib/ubsan
|
|
|
|
SRCS= ubsan_handlers_cxx.cc\
|
|
ubsan_type_hash.cc
|
|
|
|
.include <bsd.lib.mk>
|