Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/build-freebsd.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,5 +101,5 @@ cmake -B build -DENABLE_WALLET=OFF

```bash
cmake --build build # Append "-j N" for N parallel jobs.
ctest --test-dir build # Append "-j N" for N parallel tests. Some tests are disabled if Python 3 is not available.
ctest --test-dir build # Append "-j N" for N parallel tests.
```
2 changes: 1 addition & 1 deletion doc/build-netbsd.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,5 +115,5 @@ Build and run the tests:

```bash
cmake --build build # Append "-j N" for N parallel jobs.
ctest --test-dir build # Append "-j N" for N parallel tests. Some tests are disabled if Python 3 is not available.
ctest --test-dir build # Append "-j N" for N parallel tests.
```
2 changes: 1 addition & 1 deletion doc/build-openbsd.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ Run `cmake -B build -LH` to see the full list of available options.

```bash
cmake --build build # Append "-j N" for N parallel jobs.
ctest --test-dir build # Append "-j N" for N parallel tests. Some tests are disabled if Python 3 is not available.
ctest --test-dir build # Append "-j N" for N parallel tests.
```

## Resource limits
Expand Down
2 changes: 1 addition & 1 deletion doc/build-osx.md
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ Run the following in your terminal to compile Bitcoin Core:

``` bash
cmake --build build # Append "-j N" here for N parallel jobs.
ctest --test-dir build # Append "-j N" for N parallel tests. Some tests are disabled if Python 3 is not available.
ctest --test-dir build # Append "-j N" for N parallel tests.
```

### 3. Deploy (optional)
Expand Down
4 changes: 2 additions & 2 deletions doc/build-windows-msvc.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Run `cmake -B build -LH` to see the full list of available options.
```
cmake -B build --preset vs2022-static # It might take a while if the vcpkg binary cache is unpopulated or invalidated.
cmake --build build --config Release # Append "-j N" for N parallel jobs.
ctest --test-dir build --build-config Release # Append "-j N" for N parallel tests. Some tests are disabled if Python 3 is not available.
ctest --test-dir build --build-config Release # Append "-j N" for N parallel tests.
cmake --install build --config Release # Optional.
```

Expand All @@ -66,7 +66,7 @@ cmake --install build --config Release # Optional.
```
cmake -B build --preset vs2022 -DBUILD_GUI=OFF # It might take a while if the vcpkg binary cache is unpopulated or invalidated.
cmake --build build --config Release # Append "-j N" for N parallel jobs.
ctest --test-dir build --build-config Release # Append "-j N" for N parallel tests. Some tests are disabled if Python 3 is not available.
ctest --test-dir build --build-config Release # Append "-j N" for N parallel tests.
```

### 6. vcpkg-specific Issues and Workarounds
Expand Down
Loading