mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
docs: add section in README for compilation on OpenBSD (#24775)
This commit is contained in:
parent
cb3a106e1d
commit
716d66b688
1 changed files with 12 additions and 0 deletions
12
README.md
12
README.md
|
@ -168,6 +168,18 @@ cd v
|
|||
make
|
||||
```
|
||||
|
||||
### OpenBSD
|
||||
|
||||
On OpenBSD (release 7.7), V needs `boehm-gc` and `openssl-3.4.1p0v0` packages preinstalled. After
|
||||
installing them, use GNU `make` (installed with `gmake` package), to build V.
|
||||
|
||||
```bash
|
||||
pkg_add boehm-gc openssl-3.4.1p0v0 gmake
|
||||
git clone --depth=1 https://github.com/vlang/v
|
||||
cd v
|
||||
gmake
|
||||
```
|
||||
|
||||
### Termux/Android
|
||||
|
||||
On Termux, V needs some packages preinstalled - a working C compiler, also `libexecinfo`,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue