blob: e9f82c39ea9cdd86da40662cddca29a5bdb172e6 [file] [log] [blame]
Brad Bishop37a0e4d2017-12-04 01:01:44 -05001# https://wiki.debian.org/GCC5
2# We may see binaries built with gcc5 run or linked into gcc4 environment
3# so use the older libstdc++ standard for now until we don't support gcc4
4# on the host system.
5BUILD_CXXFLAGS_append = " -D_GLIBCXX_USE_CXX11_ABI=0"
6
7# icu configure defaults to CXX11 if no -std= option is passed in CXXFLAGS
8# therefore pass one
9BUILD_CXXFLAGS_append_pn-icu-native = " -std=c++98"