diff options
author | Dongkyun, Son <dongkyun.s@samsung.com> | 2017-04-24 21:25:18 +0900 |
---|---|---|
committer | Dongkyun, Son <dongkyun.s@samsung.com> | 2017-04-24 21:34:04 +0900 |
commit | 4998addba8f80a46875b84d7a9a20f4ccddff863 (patch) | |
tree | 19373a4c975ef3135b65d15639e8ef4c13d95cc3 /macros.in | |
parent | 9ae4711ac53e224310aee10bfa7034d2a337f934 (diff) | |
download | rpm-4998addba8f80a46875b84d7a9a20f4ccddff863.tar.gz rpm-4998addba8f80a46875b84d7a9a20f4ccddff863.tar.bz2 rpm-4998addba8f80a46875b84d7a9a20f4ccddff863.zip |
Adding -std=gnu++11 command-line option to CXXFLAGStizen_4.0.m1_releasesubmit/tizen_base/20170428.015534submit/tizen_4.0_base/20170828.000001submit/tizen_4.0_base/20170828.000000submit/tizen_4.0_base/20170811.071500accepted/tizen/base/20170429.025002accepted/tizen/4.0/base/20170828.221319accepted/tizen/4.0/base/20170811.093014
GCC 6 defaults to -std=gnu++14 instead of -std=gnu++98: the C++11
standard, plus GNU extensions. Tizen prefer to update to gnu++11,
bringing in the C++11 changes but not the C++14 ones.
Change-Id: Idd30e078bf3c9ec1d31c833b5ed68f686308d410
Signed-off-by: Dongkyun, Son <dongkyun.s@samsung.com>
Diffstat (limited to 'macros.in')
-rw-r--r-- | macros.in | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -854,7 +854,7 @@ posix.setenv("RPMBUILD_SOURCEDIR",rpm.expand("%?_sourcedir")); %_configure ./configure %configure \ CFLAGS="${CFLAGS:-%optflags}" ; export CFLAGS ; \ - CXXFLAGS="${CXXFLAGS:-%optflags}" ; export CXXFLAGS ; \ + CXXFLAGS="${CXXFLAGS:-%optflags -std=gnu++11}" ; export CXXFLAGS ; \ FFLAGS="${FFLAGS:-%optflags}" ; export FFLAGS ; \ %{_configure} --host=%{_host} --build=%{_build} \\\ --program-prefix=%{?_program_prefix} \\\ |