summaryrefslogtreecommitdiff
path: root/cscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2022-02-22 23:01:23 +0100
committerCarl Hetherington <cth@carlh.net>2022-02-25 14:55:24 +0100
commit8f955150ff2b642109552dd234089f9a038bb3d6 (patch)
tree29ba4328938928d6a36771be9f7cb72638a767a9 /cscript
parentb2c412480aa2cc29bfbb90556f974e9294608898 (diff)
Add -x32/-x64 suffix to boost libraries when building for Windows.
Diffstat (limited to 'cscript')
-rw-r--r--cscript6
1 files changed, 3 insertions, 3 deletions
diff --git a/cscript b/cscript
index 7bf3ce5ec..7feb7eb03 100644
--- a/cscript
+++ b/cscript
@@ -398,8 +398,8 @@ def dependencies(target, options):
# Use distro-provided FFmpeg on Arch
deps = []
- deps.append(('libdcp', 'v1.8.7'))
- deps.append(('libsub', 'v1.6.7'))
+ deps.append(('libdcp', 'v1.8.8'))
+ deps.append(('libsub', 'v1.6.8'))
deps.append(('leqm-nrt', '93ae9e6'))
deps.append(('rtaudio', 'f619b76'))
# We get our OpenSSL libraries from the environment, but we
@@ -429,7 +429,7 @@ def configure_options(target, options, for_package=False):
if target.debug:
opt += ' --enable-debug'
if target.platform == 'windows':
- opt += ' --target-windows'
+ opt += f' --target-windows-{target.bits}'
elif target.platform == 'linux':
opt += ' --static-dcpomatic --static-wxwidgets --static-ffmpeg --static-dcp --static-sub --static-cxml'
if target.distro == 'centos':