summaryrefslogtreecommitdiff
path: root/cscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-12-23 17:05:01 +0100
committerCarl Hetherington <cth@carlh.net>2021-01-04 10:48:59 +0100
commitba152e6c12018f6ff21d760b065b552f09246752 (patch)
tree84f2e7a105ad3e18797f45a872dd7a39b92dbf72 /cscript
parentd834fe55c70548623fc4b7f0edcfce41333840c6 (diff)
Remove support for macOS 32-bit builds.
Diffstat (limited to 'cscript')
-rw-r--r--cscript4
1 files 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']: