Skip to content

Commit bedc244

Browse files
authored
Update README.md
1 parent 61cc579 commit bedc244

1 file changed

Lines changed: 1 addition & 19 deletions

File tree

README.md

Lines changed: 1 addition & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
```
2222
**And run ninja to compile this game**
2323
```bash
24-
~/RLSnake $ ninja -j $(nproc)
24+
~/RLSnake $ make
2525
```
2626
**Execute `RLsnake`**
2727
```bash
@@ -33,21 +33,3 @@
3333
| Button | Action |
3434
|------------|-------------|
3535
| W,A,S,D | Move |
36-
# FAQ
37-
**What is `$(nproc)`?**
38-
39-
*`$(nproc)` is the total number of cores, plus the threads on your machine/PC, the more cores, the faster the compilation*
40-
41-
**For exanple:**
42-
43-
*My PC is an Intel Core i5-2400 4C/4T*
44-
```bash
45-
~ $ nproc
46-
Output: 4
47-
```
48-
*Other example AMD Ryzen 9 9950x 16C/32T* `<- best CPU for multi-core`
49-
```bash
50-
~ $ nproc
51-
Output: 32
52-
```
53-
*in short, `$(nproc)` will take the cpu cores "automatically"*

0 commit comments

Comments
 (0)