Skip to content

Commit 3d292da

Browse files
committed
Enable parallel build
1 parent 7ea980b commit 3d292da

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,17 +58,17 @@ clean:
5858
debug:
5959
mkdir -p build/debug && \
6060
cmake $(GENERATOR) $(BUILD_FLAGS) -DCMAKE_BUILD_TYPE=Debug -S ./duckdb/ -B build/debug && \
61-
cmake --build build/debug --config Debug
61+
cmake --build build/debug --config Debug -j
6262

6363
reldebug:
6464
mkdir -p build/reldebug && \
6565
cmake $(GENERATOR) $(BUILD_FLAGS) -DCMAKE_BUILD_TYPE=RelWithDebInfo -S ./duckdb/ -B build/reldebug && \
66-
cmake --build build/reldebug --config RelWithDebInfo
66+
cmake --build build/reldebug --config RelWithDebInfo -j
6767

6868
release:
6969
mkdir -p build/release && \
7070
cmake $(GENERATOR) $(BUILD_FLAGS) -DCMAKE_BUILD_TYPE=Release -S ./duckdb/ -B build/release && \
71-
cmake --build build/release --config Release
71+
cmake --build build/release --config Release -j
7272

7373
test: test_release
7474
test_release: release

0 commit comments

Comments
 (0)