diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-07-10 17:45:40 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-07-10 17:45:40 +0200 |
| commit | 18702018623fd9c21890812341aaa992f2131973 (patch) | |
| tree | 85f6a814fbb4b7b6578746c0cf8ac4622f2298c3 /cscript | |
| parent | 5a49c7224e1136f5256eb655791a84754fe158f4 (diff) | |
Build for Rocky 10 with newer libraries.v1.10.24
Diffstat (limited to 'cscript')
| -rw-r--r-- | cscript | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -35,7 +35,11 @@ import os import shutil def build_with_cpp17(target): - return target.platform.startswith('osx') or (target.platform == 'linux' and target.distro == 'debian' and target.version == 'unstable') + return ( + target.platform.startswith('osx') or + (target.platform == 'linux' and target.distro == 'debian' and target.version == 'unstable') or + (target.platform == 'linux' and target.distro == 'rocky' and target.version == '10') + ) def dependencies(target, options): deps = [ |
