diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-12-23 17:05:01 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-01-04 10:48:59 +0100 |
| commit | ba152e6c12018f6ff21d760b065b552f09246752 (patch) | |
| tree | 84f2e7a105ad3e18797f45a872dd7a39b92dbf72 /cscript | |
| parent | d834fe55c70548623fc4b7f0edcfce41333840c6 (diff) | |
Remove support for macOS 32-bit builds.
Diffstat (limited to 'cscript')
| -rw-r--r-- | cscript | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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']: |
