X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=cscript;h=603567654a6115ca9f039acd5cc2eeb914ae1316;hb=1ca2f66168c24db875b9766601970427063c7726;hp=f4be59f110e919d3785a478a3f99c98ca1f21f9c;hpb=29ebfe58748a931653b63054444cf035d30b8b22;p=libdcp.git diff --git a/cscript b/cscript index f4be59f1..60356765 100644 --- a/cscript +++ b/cscript @@ -46,14 +46,15 @@ def build(target, options): cmd += ' --jpeg=%s' % options['jpeg'] if target.platform == 'linux': cmd += ' --static' - if target.distro == 'centos': + if not (target.distro == 'ubuntu' and target.version == '18.04'): + # We only build tests on Ubuntu 18.04 cmd += ' --disable-tests' - if target.version == '7': - # 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. - cmd += ' --force-cpp11' + if target.distro == 'centos' and target.version == '7': + # 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. + cmd += ' --force-cpp11' if target.distro == 'mageia' and target.version == '6': # Mageia 6 pulls the same stunt except it's libxml++ that requires C++11 cmd += ' --force-cpp11'