Remove support for macOS 32-bit builds.
authorCarl Hetherington <cth@carlh.net>
Wed, 23 Dec 2020 16:05:01 +0000 (17:05 +0100)
committerCarl Hetherington <cth@carlh.net>
Mon, 4 Jan 2021 09:48:59 +0000 (10:48 +0100)
cscript

diff --git a/cscript b/cscript
index 4ae6490ab27ce6d5d302d4bfe498a86bc1bb8a09..3ad6e3f6c8f2eeda60d84122bd93f4e8cb79f277 100644 (file)
--- 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']: