diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-02-22 22:58:19 +0100 |
|---|---|---|
| committer | cah <cah@ableton.com> | 2022-02-25 07:59:44 +0100 |
| commit | ad56a6cb32e891c089ee8e818c398d069c56b39a (patch) | |
| tree | 8273edeb6bb01e6fde52f117dd08ba6ed86fd776 /cscript | |
| parent | 86c3543d7894f482c70769bcb4f2170980b23b4d (diff) | |
Add -x32/-x64 suffix to boost libraries when building for Windows.win32-crash
Diffstat (limited to 'cscript')
| -rw-r--r-- | cscript | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -22,7 +22,7 @@ import os option_defaults = { 'force-cpp11': False } def dependencies(target, options): - return (('asdcplib', 'bb09615'), ('libdcp', 'v1.8.7')) + return (('asdcplib', '97918d86caf4b5a2296a0d3092f1e2e69b9af9e5'), ('libdcp', 'c4d994e5391d73d5480473cb46f53282df3f0508')) def build(target, options): cmd = './waf configure --prefix=%s' % target.directory @@ -33,7 +33,7 @@ def build(target, options): if target.debug: cmd += ' --enable-debug' if target.platform == 'windows': - cmd += ' --target-windows --disable-tests' + cmd += f' --target-windows-{target.bits} --disable-tests' target.command(cmd) target.command('./waf build install') |
