tools/format-cpp: run `xargs` with `-P$(nproc)` (format in parallel)
[babeltrace.git] / tools / format-cpp
index 56064ce0c1f7c4acca5329db90a0caf917999d81..0a165a8f2b18e03953120bf81ab5ec4030ec52a1 100755 (executable)
@@ -4,7 +4,7 @@
 #
 # Copyright (C) 2020-2022 Philippe Proulx <pproulx@efficios.com>
 
-expected_formatter_major_version=14
+expected_formatter_major_version=15
 
 # Runs the formatter, making sure it's the expected version.
 format_cpp() {
@@ -39,7 +39,7 @@ format_cpp() {
        find "$root_dir" \( -name '*.cpp' -o -name '*.hpp' \) \
                ! -wholename '*/cpp-common/optional.hpp' \
                ! -wholename '*/cpp-common/string_view.hpp' \
-               -print0 | xargs -n1 -0 $formatter
+               -print0 | xargs -P$(nproc) -n1 -0 $formatter
 }
 
 if [[ -n "$FORMATTER" ]]; then
This page took 0.022767 seconds and 4 git commands to generate.