Allow users to override CSTD/CXXSTD on a per-prog basis
The current logic for CSTD/CXXSTD requires homogenity as far as the supported C/C++ standards, which is a sensible default. However, when dealing with differing versions of C++, some code may compile with C++11, but not C++17 (for instance). So in order to avoid having people convert over their code to the new standard, give the users the ability to specify the standard on a per-program basis. This will allow a user to override the supporting standard for a set of programs, mixing C++11 with C++14 (for instance). Reviewed by: asomers Apprved by: emaste (mentor) MFC after: 1 month MFC with: r345708 Differential Revision: https://reviews.freebsd.org/D19738
This commit is contained in:
parent
777d26ce52
commit
0b0688a91c
@ -50,8 +50,8 @@ PROGS+= h_getopt h_getopt_long
|
||||
|
||||
CFLAGS+= -I${.CURDIR}
|
||||
|
||||
CXXFLAGS.cxa_thread_atexit_test+= -std=c++11
|
||||
CXXFLAGS.cxa_thread_atexit_nothr_test+= -std=c++11
|
||||
CXXSTD.cxa_thread_atexit_test= c++11
|
||||
CXXSTD.cxa_thread_atexit_nothr_test= c++11
|
||||
LIBADD.cxa_thread_atexit_test+= pthread
|
||||
|
||||
.for t in h_getopt h_getopt_long
|
||||
|
@ -22,8 +22,8 @@ PROGS += ${PROGS_CXX}
|
||||
|
||||
.if defined(PROG)
|
||||
# just one of many
|
||||
PROG_OVERRIDE_VARS += BINDIR BINGRP BINOWN BINMODE DPSRCS MAN NO_WERROR \
|
||||
PROGNAME SRCS STRIP WARNS
|
||||
PROG_OVERRIDE_VARS += BINDIR BINGRP BINOWN BINMODE CSTD CXXSTD DPSRCS MAN \
|
||||
NO_WERROR PROGNAME SRCS STRIP WARNS
|
||||
PROG_VARS += CFLAGS CXXFLAGS DEBUG_FLAGS DPADD INTERNALPROG LDADD LIBADD \
|
||||
LINKS LDFLAGS MLINKS ${PROG_OVERRIDE_VARS}
|
||||
.for v in ${PROG_VARS:O:u}
|
||||
|
Loading…
x
Reference in New Issue
Block a user