6527682ab7
Previously the compiler's default C++ standard was used unlike C where bsd.sys.mk explicitly sets a default language version. Setting an explicit default version will give a more uniform experience across different compilers and compiler versions. gnu++17 was chosen to match the default C standard. It is well supported by a wide range of clang (5+) and GCC (9+) versions. gnu++17 is also the default C++ standard in recent versions of clang (16+) and GCC (11+). As a result, many of the explicit CXXSTD settings in Makefiles had the effect of lowering the C++ standard instead of raising it as was originally intended and are removed. Note that the remaining explicit CXXSTD settings for atf and liblutok explicitly lower the standard to C++11 due to use of the deprecated auto_ptr<> template which is removed in later versions. Reviewed by: imp, asomers, dim, emaste Differential Revision: https://reviews.freebsd.org/D49223
53 lines
1.6 KiB
Makefile
53 lines
1.6 KiB
Makefile
COMPILERRTDIR= ${SRCTOP}/contrib/llvm-project/compiler-rt
|
|
UNWINDINCDIR= ${SRCTOP}/contrib/llvm-project/libunwind/include
|
|
UNWINDSRCDIR= ${SRCTOP}/contrib/llvm-project/libunwind/src
|
|
|
|
STATIC_CFLAGS+=${PICFLAG} -fvisibility=hidden -DVISIBILITY_HIDDEN
|
|
|
|
.PATH: ${COMPILERRTDIR}/lib/builtins
|
|
.PATH: ${UNWINDSRCDIR}
|
|
SRCS_EXC+= gcc_personality_v0.c
|
|
SRCS_EXC+= Unwind-EHABI.cpp
|
|
SRCS_EXC+= Unwind-sjlj.c
|
|
SRCS_EXC+= UnwindLevel1-gcc-ext.c
|
|
SRCS_EXC+= UnwindLevel1.c
|
|
SRCS_EXC+= UnwindRegistersRestore.S
|
|
SRCS_EXC+= UnwindRegistersSave.S
|
|
SRCS_EXC+= libunwind.cpp
|
|
|
|
SRCS+= ${SRCS_EXC}
|
|
.if ${MACHINE} == "amd64" || ${MACHINE} == "i386" || ${MACHINE} == "powerpc"
|
|
CFLAGS.UnwindLevel1-gcc-ext.c+= -D_LIBUNWIND_SUPPORT_FRAME_APIS
|
|
.endif
|
|
.for file in ${SRCS_EXC:M*.c}
|
|
CFLAGS.${file}+= -fno-exceptions -funwind-tables
|
|
.if ${MK_ASAN} != "no"
|
|
# False-positives during stack unwinding
|
|
CFLAGS.${file}+= -fno-sanitize=address
|
|
.endif
|
|
.endfor
|
|
.for file in ${SRCS_EXC:M*.cpp}
|
|
CXXFLAGS.${file}+= -fno-exceptions -funwind-tables
|
|
.if ${MK_ASAN} != "no"
|
|
# False-positives during stack unwinding
|
|
CXXFLAGS.${file}+= -fno-sanitize=address
|
|
.endif
|
|
.endfor
|
|
|
|
CFLAGS+= -I${UNWINDINCDIR}
|
|
CFLAGS+= -D_LIBUNWIND_IS_NATIVE_ONLY
|
|
CFLAGS+= -D_LIBUNWIND_USE_FRAME_HEADER_CACHE
|
|
CXXFLAGS+= -fno-rtti
|
|
STATIC_CXXFLAGS+= -fvisibility=hidden -fPIC
|
|
# Probably need to just move this earlier or use CXXFLAGS
|
|
.if ${MK_DIRDEPS_BUILD} == "yes"
|
|
# Avoid dependency on lib/libc++
|
|
CFLAGS+= -isystem ${SRCTOP}/contrib/llvm-project/libcxx/include -nostdinc++
|
|
|
|
# we need this for __config_site
|
|
CFLAGS+= -I${SRCTOP}/lib/libc++
|
|
.if ${.MAKE.LEVEL} > 0
|
|
GENDIRDEPS_FILTER+= Nlib/libc++
|
|
.endif
|
|
.endif
|