07b202a847
get rid of testing explicitly for clang (using ${CC:T:Mclang}) in individual Makefiles. Instead, use the following extra macros, for use with clang: - NO_WERROR.clang (disables -Werror) - NO_WCAST_ALIGN.clang (disables -Wcast-align) - NO_WFORMAT.clang (disables -Wformat and friends) - CLANG_NO_IAS (disables integrated assembler) - CLANG_OPT_SMALL (adds flags for extra small size optimizations) As a side effect, this enables setting CC/CXX/CPP in src.conf instead of make.conf! For clang, use the following: CC=clang CXX=clang++ CPP=clang-cpp MFC after: 2 weeks
24 lines
484 B
Makefile
24 lines
484 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/arch/${MACHINE_CPUARCH}
|
|
|
|
LIB= thread_db
|
|
SHLIB_MAJOR= 3
|
|
SRCS= thread_db.c
|
|
SRCS+= libpthread_md.c
|
|
SRCS+= libpthread_db.c
|
|
SRCS+= libthr_db.c
|
|
INCS= thread_db.h
|
|
|
|
CFLAGS+=-I. -I${.CURDIR}
|
|
SYM_MAPS+=${.CURDIR}/Symbol.map
|
|
|
|
SYMBOL_MAPS=${SYM_MAPS}
|
|
VERSION_DEF=${.CURDIR}/../libc/Versions.def
|
|
|
|
# Unfortunately, clang gives an incorrect warning about alignment in
|
|
# arch/i386/libpthread_md.c, so turn that off for now.
|
|
NO_WCAST_ALIGN.clang=
|
|
|
|
.include <bsd.lib.mk>
|