From ba152e6c12018f6ff21d760b065b552f09246752 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Wed, 23 Dec 2020 17:05:01 +0100 Subject: [PATCH] Remove support for macOS 32-bit builds. --- cscript | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cscript b/cscript index 4ae6490ab..3ad6e3f6c 100644 --- a/cscript +++ b/cscript @@ -372,7 +372,7 @@ def dependencies(target, options): # Let's use C++11 mode if we can cpp_lib_options = {'force-cpp11': True} if ( - (target.platform == 'osx' and target.bits == 64) or + (target.platform == 'osx') or (target.platform == 'windows')) else {} deps.append(('libdcp', 'c6665c1', cpp_lib_options)) @@ -417,7 +417,7 @@ def configure_options(target, options): # I worry that this will cause ABI problems but I don't have # a better solution. opt += ' --force-cpp11' - elif target.platform == 'osx' and target.bits == 64: + elif target.platform == 'osx': opt += ' --force-cpp11' if not options['gui']: -- 2.30.2