From 273ec0d6a37565e4513ebbde6cae242be36f173b Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Mon, 11 Dec 2017 23:53:23 +0000 Subject: More C++11 fixes. --- cscript | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'cscript') diff --git a/cscript b/cscript index 69aa855aa..1a32daac6 100644 --- a/cscript +++ b/cscript @@ -308,6 +308,11 @@ def configure_options(target): opt += ' --static-boost --static-xmlpp' elif target.version == '7': opt += ' --workaround-gssapi' + # Centos 7 ships with glibmm 2.50.0 which requires C++11 + # but its compiler (gcc 4.8.5) defaults to C++97. Go figure. + # I worry that this will cause ABI problems but I don't have + # a better solution. + opt += ' --force-cpp11' # Build Windows debug versions with static linking as I think gdb works better then if target.debug and target.platform == 'windows': -- cgit v1.2.3