mirror of
https://github.com/bolero-MURAKAMI/Sprout
synced 2025-08-03 12:49:50 +00:00
fix testspr
This commit is contained in:
parent
7640eca894
commit
6e5004b6f4
2 changed files with 4 additions and 8 deletions
|
@ -56,15 +56,17 @@ def main():
|
|||
pool = multiprocessing.Pool(opts.max_procs if opts.max_procs != 0 else None)
|
||||
return sum(result != 0 for result in pool.map(
|
||||
build,
|
||||
[format_command('gcc', version, opts.gcc_root)
|
||||
([format_command('gcc', version, opts.gcc_root)
|
||||
for version in opts.gcc_version.split(' ')
|
||||
] if opts.gcc_version != ' '
|
||||
else []
|
||||
)
|
||||
+
|
||||
[format_command('clang', version, opts.clang_root)
|
||||
([format_command('clang', version, opts.clang_root)
|
||||
for version in opts.clang_version.split(' ')
|
||||
] if opts.clang_version != ' '
|
||||
else []
|
||||
)
|
||||
))
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue