summaryrefslogtreecommitdiff
path: root/cscript
diff options
context:
space:
mode:
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']: