summaryrefslogtreecommitdiff
path: root/cscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2026-04-24 07:48:14 +0200
committerCarl Hetherington <cth@carlh.net>2026-04-24 07:48:14 +0200
commit713a5c5cc49ae12a9de0a021af954e5a39b4bee8 (patch)
treed44346f1689cc63da0ba66ebc138a6de07499416 /cscript
parent4800bc4ddd8172eb8766fd47e3ae4410e7795a53 (diff)
More distros need --static-boost now.v1.10.56
Diffstat (limited to 'cscript')
-rw-r--r--cscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/cscript b/cscript
index 5d46dde7..85d62bd4 100644
--- a/cscript
+++ b/cscript
@@ -47,7 +47,7 @@ def build_with_cpp17(target):
def dependencies(target, options, for_package):
deps = [
- ('libcxml', 'v0.17.16', { 'c++17': build_with_cpp17(target) }),
+ ('libcxml', 'v0.17.17', { 'c++17': build_with_cpp17(target) }),
('asdcplib', 'v1.0.9')
]
@@ -79,7 +79,7 @@ def build(target, options, for_package, version):
cmd += ' --static'
if target.distro == 'debian' or (target.distro == 'centos' and target.version != 'stream10') or (target.distro == 'rocky' and target.version != '10') or target.distro == 'mageia':
cmd += ' --disable-tests'
- if target.distro == 'ubuntu' and target.version == '16.04':
+ if (target.distro, target.version) in [('rocky', '8'), ('ubuntu', '18.04'), ('ubuntu', '16.04')]:
cmd += ' --static-boost'
elif target.platform == 'windows':
cmd += f' --target-windows-{target.bits}'