diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-09-29 19:53:43 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-09-29 23:36:27 +0200 |
| commit | ab649d52f6f5f465630d3e8e8d98f9a9db685ef5 (patch) | |
| tree | 1243b0e5416119a4e0742ef3d6728df68ddf0fcf | |
| parent | 7bb243e7aec229631178d7856d0908883fa860a1 (diff) | |
Don't bother building ffcmp on platforms where we don't run tests.
It would be nice to check for_package as well but that needs passing
into dependencies() to work.
| -rw-r--r-- | cscript | 18 |
1 files changed, 12 insertions, 6 deletions
@@ -547,21 +547,27 @@ def dependencies(target, options): deps.append(('openssl', '54298369cacfe0ae01c5aa42ace8a463fd2e7a2e')) if can_build_disk(target): deps.append(('lwext4', 'ab082923a791b58478d1d9939d65a0583566ac1f')) - deps.append(('ffcmp', '29265c42838fbb647c404cf73b6fca5259cf2093')) + if build_tests(target): + deps.append(('ffcmp', '29265c42838fbb647c404cf73b6fca5259cf2093')) return deps option_defaults = { "gui": True, "variant": None } -def configure_options(target, options, for_package=False): - opt = ' --warnings-are-errors' - if for_package or not ( +def build_tests(target): + # Currently we only build tests on macOS, Windows, and some Ubuntu versions + return ( (target.platform == 'linux' and target.distro == 'ubuntu' and target.version in ['18.04', '22.04', '24.04']) or (target.platform == 'osx') or (target.platform == 'windows') - ): - # Currently we only build tests on macOS, Windows, and some Ubuntu versions + ) + + +def configure_options(target, options, for_package=False): + opt = ' --warnings-are-errors' + + if for_package or not build_tests(target): opt += ' --disable-tests' if target.debug: |
