From bf0ae814e32d57d8daedcf70ed3cfcf0651573e9 Mon Sep 17 00:00:00 2001 From: Nathan Date: Fri, 22 Aug 2025 15:43:32 -0700 Subject: [PATCH] -j1 --- configure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.py b/configure.py index ea72b06e..0c2ef89c 100644 --- a/configure.py +++ b/configure.py @@ -104,7 +104,7 @@ def build(): toolchain_file = os.path.join(os.getcwd(), "vcpkg", "scripts", "buildsystems", "vcpkg.cmake") run("cmake .. -DCMAKE_TOOLCHAIN_FILE=\"%s\"" % toolchain_file, cwd=build_dir) - run("cmake --build . --config Release -j2 --target pdal-python", cwd=build_dir) + run("cmake --build . --config Release -j1 --target pdal-python", cwd=build_dir) def vcpkg_export(): if not os.path.exists("vcpkg"):