Skip to content
This repository was archived by the owner on Jul 4, 2025. It is now read-only.
Merged
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
33 changes: 22 additions & 11 deletions README_temp.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,28 @@ This will create a build_deps folder, just ignore it

### Step 2:

Build the app from source

```zsh
mkdir build && cd build
cmake ..

# MacOS
make -j $(sysctl -n hw.physicalcpu)
# Linux
make -j $(%NUMBER_OF_PROCESSORS%)
```
Generate build file
- On MacOS with Apple silicon:

```zsh
mkdir build && cd build
cmake ..
```

- On MacOS with Intel processors:
```zsh
mkdir build && cd build
cmake -DLLAMA_METAL=OFF ..
```

Build the app
- On MacOS and Linux
```
# MacOS
make -j $(sysctl -n hw.physicalcpu)
# Linux
make -j $(%NUMBER_OF_PROCESSORS%)
```

### Step 3:

Expand Down