mirror of
https://github.com/yshui/picom.git
synced 2024-11-18 13:55:36 -05:00
Added FreeBSD build instructions
This commit is contained in:
parent
49e85f6161
commit
aa77c6d570
1 changed files with 7 additions and 0 deletions
|
@ -53,6 +53,13 @@ $ meson --buildtype=release . build
|
|||
$ ninja -C build
|
||||
```
|
||||
|
||||
On FreeBSD, `ld` does not look by default in /usr/local/lib, and you will get errors about some libraries being not found.
|
||||
To fix that, append `LDFLAGS="-L/usr/local/lib"`:
|
||||
```bash
|
||||
$ LDFLAGS="-L/usr/local/lib" meson --buildtype=release . build
|
||||
$ ninja -C build
|
||||
```
|
||||
|
||||
Built binary can be found in `build/src`
|
||||
|
||||
### To install
|
||||
|
|
Loading…
Reference in a new issue