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-03-03 21:55:10 +0100
commit5bc2ed271d09bfeaccce006324392bb7beb4850f (patch)
treedd2742953278d1812d76585d42ea2d9da7ceb0d0 /cscript
parent4a9e6cf127512504d05f7ccf4a70a47a63e65809 (diff)
Add -x32/-x64 suffix to boost libraries when building for Windows.
Diffstat (limited to 'cscript')
-rw-r--r--cscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/cscript b/cscript
index 57a2a43e4..9907e30c7 100644
--- a/cscript
+++ b/cscript
@@ -431,7 +431,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':