Skip to content

Commit

Permalink
update make -j to make -j 24 to avoid misuse (#1928)
Browse files Browse the repository at this point in the history
prevent fresh from misuse `make -j`

Former-commit-id: 57004cf
  • Loading branch information
Dounm authored Jul 12, 2019
1 parent fbfd1d0 commit 18c4974
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ or you can just clone source code and submodules step by step
#### build third party from source

```
cmake -DTHIRD_PARTY=ON .. && make -j
cmake -DTHIRD_PARTY=ON .. && make -j 24
```

#### build oneflow

```
cmake -DTHIRD_PARTY=OFF .. && make -j
cmake -DTHIRD_PARTY=OFF .. && make -j 24
```

0 comments on commit 18c4974

Please sign in to comment.