Skip to content

Commit 345c266

Browse files
authored
Merge pull request openscad#5316 from openscad/remove-parallel-build-args
Remove -j suggestions
2 parents a0522f5 + 7494163 commit 345c266

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ We support building OpenSCAD headless for WebAssembly w/ Emscripten, using a pre
241241
docker run --rm -it -v $PWD:/src:rw --platform=linux/amd64 openscad/wasm-base:latest \
242242
emcmake cmake -B build -DEXPERIMENTAL=ON -DCMAKE_BUILD_TYPE=Release && \
243243
docker run --rm -it -v $PWD:/src:rw --platform=linux/amd64 openscad/wasm-base:latest \
244-
cmake --build build -j10
244+
cmake --build build
245245
```
246246

247247
This creates `openscad.wasm` & `openscad.js` in the `build/` folder.
@@ -252,7 +252,7 @@ This creates `openscad.wasm` & `openscad.js` in the `build/` folder.
252252

253253
First, run `cmake -B build -DEXPERIMENTAL=1` to generate a Makefile in the `build` folder.
254254

255-
Then run `cmake --build build -j`. Finally, on Linux you might run `cmake --install build` as root.
255+
Then run `cmake --build build`. Finally, on Linux you might run `cmake --install build` as root.
256256

257257
If you had problems compiling from source, raise a new issue in the
258258
[issue tracker on the github page](https://github.com/openscad/openscad/issues).

0 commit comments

Comments
 (0)