760b1a815b
CXXSTD was added as the C++ analogue to CSTD. CXXSTD defaults to `-std=c++11` with supporting compilers; `-std=gnu++98`, otherwise for older versions of g++. This change standardizes the CXXSTD variable, originally added to googletest.test.inc.mk as part of r345203. As part of this effort, convert all `CXXFLAGS+= -std=*` calls to use `CXXSTD`. Notes: This value is not sanity checked in bsd.sys.mk, however, given the two most used C++ compilers on FreeBSD (clang++ and g++) support both modes, it is likely to work with both toolchains. This method will be refined in the future to support more variants of C++, as not all versions of clang++ and g++ (for instance) support C++14, C++17, etc. Any manual appending of `-std=*` to `CXXFLAGS` should be replaced with CXXSTD. Example: Before this commit: ``` CXXFLAGS+= -std=c++14 ``` After this commit: ``` CXXSTD= c++14 ``` Reviewed by: asomers Approved by: emaste (mentor) MFC after: 1 month MFC with: r345203, r345704, r345705 Relnotes: yes Tested with: make tinderbox Differential Revision: https://reviews.freebsd.org/D19732
37 lines
653 B
Makefile
37 lines
653 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
_spath= ${SRCTOP}/contrib/ofed/libibnetdisc
|
|
.PATH: ${_spath} ${_spath}/man
|
|
|
|
SHLIBDIR?= /usr/lib
|
|
LIB_CXX= ibnetdisc
|
|
SHLIB_MAJOR= 5
|
|
MK_PROFILE= no
|
|
|
|
SRCS= \
|
|
chassis.c \
|
|
g_hash_table.cpp \
|
|
ibnetdisc.c \
|
|
ibnetdisc_cache.c \
|
|
query_smp.c
|
|
|
|
MAN= \
|
|
ibnd_debug.3 \
|
|
ibnd_destroy_fabric.3 \
|
|
ibnd_discover_fabric.3 \
|
|
ibnd_find_node_dr.3 \
|
|
ibnd_find_node_guid.3 \
|
|
ibnd_iter_nodes.3 \
|
|
ibnd_iter_nodes_type.3 \
|
|
ibnd_show_progress.3
|
|
|
|
LIBADD= osmcomp ibmad ibumad
|
|
CFLAGS+= -DHAVE_CONFIG_H=1
|
|
CFLAGS+= -I${_spath}
|
|
CFLAGS+= -I${SYSROOT:U${DESTDIR}}/${INCLUDEDIR}/infiniband
|
|
VERSION_MAP= ${_spath}/libibnetdisc.map
|
|
|
|
.include <bsd.lib.mk>
|