diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2000-04-04 09:27:59 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2000-04-04 09:27:59 +0000 |
| commit | 0e8d7e82a44c73e80e9f8049a0ea6ba52116b591 (patch) | |
| tree | 30a891284fe3bc998c8b4dd9492b8efb8d71b370 | |
| parent | 27173c13e8daa4340d60cd88927c23ec1bc125dc (diff) | |
Notes
| -rw-r--r-- | etc/defaults/make.conf | 6 | ||||
| -rw-r--r-- | share/examples/etc/make.conf | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/etc/defaults/make.conf b/etc/defaults/make.conf index 843e5eb56037..c707985770fd 100644 --- a/etc/defaults/make.conf +++ b/etc/defaults/make.conf @@ -19,6 +19,12 @@ # #CFLAGS= -O -pipe # +# CXXFLAGS controls the compiler settings used when compiling C++ code. +# Note that CXXFLAGS is initially set to the value of CFLAGS. If you wish +# to add to CXXFLAGS value, "+=" must be used rather than "=". Using "=" +# alone will remove the often needed contents of CFLAGS from CXXFLAGS. +# +#CXXFLAGS+= -fmemoize-lookups -fsave-memoized # # Avoid compiling profiled libraries #NOPROFILE= true diff --git a/share/examples/etc/make.conf b/share/examples/etc/make.conf index 843e5eb56037..c707985770fd 100644 --- a/share/examples/etc/make.conf +++ b/share/examples/etc/make.conf @@ -19,6 +19,12 @@ # #CFLAGS= -O -pipe # +# CXXFLAGS controls the compiler settings used when compiling C++ code. +# Note that CXXFLAGS is initially set to the value of CFLAGS. If you wish +# to add to CXXFLAGS value, "+=" must be used rather than "=". Using "=" +# alone will remove the often needed contents of CFLAGS from CXXFLAGS. +# +#CXXFLAGS+= -fmemoize-lookups -fsave-memoized # # Avoid compiling profiled libraries #NOPROFILE= true |
