summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2026-04-24 07:45:26 +0200
committerCarl Hetherington <cth@carlh.net>2026-04-24 07:45:26 +0200
commitefde22cde088969f7f7edb23593bbb22a65f5eea (patch)
tree2619e6c81f1bd3d0708af41d890f0c10c0fc66d4
parent4cbbf6a52b45653fed86612589626b90f317378b (diff)
Rocky 8 and Ubuntu 18.04 now also need --static-boost.HEADv0.17.17master
-rw-r--r--cscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/cscript b/cscript
index de754f6..c392e53 100644
--- a/cscript
+++ b/cscript
@@ -31,7 +31,7 @@ def build(target, options, for_package, version):
cmd = './waf configure --prefix=%s' % target.directory
if target.platform == 'linux':
cmd += ' --static'
- if (target.distro, target.version) in [('centos', '7'), ('ubuntu', '16.04'), ('ubuntu', '14.04')]:
+ if (target.distro, target.version) in [('centos', '7'), ('rocky', '8'), ('ubuntu', '18.04'), ('ubuntu', '16.04'), ('ubuntu', '14.04')]:
cmd += ' --static-boost'
elif target.platform == 'windows':
cmd += f' --target-windows-{target.bits}'