Skip to content

Commit 76b1983

Browse files
authored
doc: Update build from source documentation (#1951)
* doc: bring back old build from source instructions * doc: fix missing ./ * doc: add ./ for windows too * add cmake prereq
1 parent f9364aa commit 76b1983

File tree

2 files changed

+112
-7
lines changed

2 files changed

+112
-7
lines changed

BUILDING.md

+111
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,111 @@
1+
# Build Cortex.cpp from source
2+
3+
Firstly, clone the Cortex.cpp repository [here](https://github.com/janhq/cortex.cpp) and initialize the submodules:
4+
5+
```bash
6+
git clone https://github.com/janhq/cortex.cpp
7+
cd cortex.cpp
8+
git submodule update --init --recursive
9+
```
10+
11+
You also need to install CMake. On Linux and MacOS, you can install CMake via your package manager
12+
13+
```bash
14+
sudo apt install cmake # Ubuntu
15+
brew install cmake # MacOS
16+
```
17+
18+
On Windows, you can download CMake from https://cmake.org/download/.
19+
20+
#### Windows
21+
22+
1. Navigate to the `engine` folder.
23+
2. Configure the vpkg:
24+
25+
```bash
26+
cd vcpkg
27+
./bootstrap-vcpkg.bat
28+
./vcpkg install
29+
```
30+
31+
3. Build the Cortex.cpp inside the `engine/build` folder (you can change `-DCMAKE_TOOLCHAIN_FILE` to use your own `vcpkg`):
32+
33+
```bash
34+
mkdir build
35+
cd build
36+
cmake .. -DBUILD_SHARED_LIBS=OFF -DCMAKE_TOOLCHAIN_FILE=../vcpkg/scripts/buildsystems/vcpkg.cmake -DVCPKG_TARGET_TRIPLET=x64-windows-static
37+
cmake --build . --config Release
38+
```
39+
40+
4. Verify that Cortex.cpp is installed correctly by getting help information.
41+
42+
```sh
43+
cortex -h
44+
```
45+
46+
#### Linux and MacOS
47+
48+
1. Navigate to the `engine` folder.
49+
2. Configure the vpkg:
50+
51+
```bash
52+
cd vcpkg
53+
./bootstrap-vcpkg.sh
54+
./vcpkg install
55+
```
56+
57+
3. Build the Cortex.cpp inside the `engine/build` folder (you can change `-DCMAKE_TOOLCHAIN_FILE` to use your own `vcpkg`):
58+
59+
```bash
60+
mkdir build
61+
cd build
62+
cmake .. -DCMAKE_TOOLCHAIN_FILE=../vcpkg/scripts/buildsystems/vcpkg.cmake
63+
make -j4
64+
```
65+
66+
4. Verify that Cortex.cpp is installed correctly by getting help information.
67+
68+
```sh
69+
./cortex -h
70+
```
71+
72+
#### Devcontainer / Codespaces
73+
74+
1. Open Cortex.cpp repository in Codespaces or local devcontainer
75+
76+
[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/janhq/cortex.cpp?quickstart=1)
77+
78+
```sh
79+
devcontainer up --workspace-folder .
80+
```
81+
82+
2. Configure vpkg in `engine/vcpkg`:
83+
84+
```bash {"tag": "devcontainer"}
85+
cd engine/vcpkg
86+
export VCPKG_FORCE_SYSTEM_BINARIES="$([[ $(uname -m) == 'arm64' ]] && echo '1' || echo '0')"
87+
./bootstrap-vcpkg.sh
88+
```
89+
90+
3. Build the Cortex.cpp inside the `engine/build` folder:
91+
92+
```bash {"tag": "devcontainer"}
93+
cd engine
94+
mkdir -p build
95+
cd build
96+
cmake .. -DCMAKE_TOOLCHAIN_FILE=$(realpath ..)/vcpkg/scripts/buildsystems/vcpkg.cmake
97+
make -j$(grep -c ^processor /proc/cpuinfo)
98+
```
99+
100+
4. Verify that Cortex.cpp is installed correctly by getting help information.
101+
102+
```sh {"tag": "devcontainer"}
103+
cd engine/build
104+
./cortex -h
105+
```
106+
107+
5. Everytime a rebuild is needed, just run the commands above using oneliner
108+
109+
```sh
110+
npx -y runme run --filename README.md -t devcontainer -y
111+
```

README.md

+1-7
Original file line numberDiff line numberDiff line change
@@ -160,13 +160,7 @@ cortex-nightly hardware activate
160160

161161
### Build from Source
162162

163-
```bash
164-
git clone https://github.com/janhq/cortex.cpp
165-
cd cortex.cpp
166-
git submodule update --init --recursive
167-
cd engine/vcpkg && ./bootstrap-vcpkg.sh
168-
cd ../build && cmake .. && make -j4
169-
```
163+
See [BUILDING.md](BUILDING.md)
170164

171165
## Uninstall Cortex
172166

0 commit comments

Comments
 (0)