Skip to content

Commit

Permalink
docs : remove make references [no ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
ggerganov committed Nov 29, 2024
1 parent fb6e8b1 commit 4d4742a
Showing 1 changed file with 0 additions and 24 deletions.
24 changes: 0 additions & 24 deletions docs/build.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,30 +9,6 @@ cd llama.cpp

In order to build llama.cpp you have four different options.

- Using `make`:
- On Linux or MacOS:

```bash
make
```

- On Windows (x86/x64 only, arm64 requires cmake):

1. Download the latest fortran version of [w64devkit](https://github.com/skeeto/w64devkit/releases).
2. Extract `w64devkit` on your pc.
3. Run `w64devkit.exe`.
4. Use the `cd` command to reach the `llama.cpp` folder.
5. From here you can run:
```bash
make
```

- Notes:
- For `Q4_0_4_4` quantization type build, add the `GGML_NO_LLAMAFILE=1` flag. For example, use `make GGML_NO_LLAMAFILE=1`.
- For faster compilation, add the `-j` argument to run multiple jobs in parallel. For example, `make -j 8` will run 8 jobs in parallel.
- For faster repeated compilation, install [ccache](https://ccache.dev/).
- For debug builds, run `make LLAMA_DEBUG=1`

- Using `CMake`:

```bash
Expand Down

0 comments on commit 4d4742a

Please sign in to comment.