Enji Cooper 9a41926bfb CXXSTD is 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
Relnotes:	yes
Differential Revision:	https://reviews.freebsd.org/D19732
2019-03-29 18:13:44 +00:00
..
2018-07-27 10:44:38 +00:00
2017-11-04 21:02:26 +00:00
2019-03-21 21:45:02 +00:00
2017-01-28 16:31:23 +00:00
2016-06-03 19:25:36 +00:00
2019-02-25 18:22:20 +00:00
2019-02-15 23:41:54 +00:00
2019-03-29 18:13:44 +00:00
2019-01-15 23:35:53 +00:00
2018-08-02 21:33:45 +00:00
2019-02-21 03:36:09 +00:00
2018-08-02 21:33:45 +00:00
2016-12-23 02:57:00 +00:00
2018-08-02 21:33:45 +00:00
2018-07-27 10:44:38 +00:00
2019-03-05 01:00:38 +00:00
2018-07-27 10:44:38 +00:00