mirror of
https://github.com/bevyengine/bevy
synced 2024-11-21 20:23:28 +00:00
Note on compiling on FreeBSD (#15232)
The hgame kernel module is necessary to load on start up, otherwise, Bevy will crash. Adding a note to the docs to help anyone struggling with this.
This commit is contained in:
parent
23a77ca5eb
commit
0dd00e9204
1 changed files with 8 additions and 0 deletions
|
@ -205,3 +205,11 @@ sudo eopkg it wayland-devel libxkbcommon-devel
|
||||||
```
|
```
|
||||||
|
|
||||||
Compiling with clang is also possible - replace the `g++` package with `llvm-clang`
|
Compiling with clang is also possible - replace the `g++` package with `llvm-clang`
|
||||||
|
|
||||||
|
## [FreeBSD](https://www.freebsd.org/)
|
||||||
|
|
||||||
|
It is necessary to have the hgame module loaded in order to satisfy gli-rs. It will still throw an error, but the program should run successfully. You can make sure the kernel module is loaded on start up by adding the following line to /boot/loader.conf:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
hgame_load="YES"
|
||||||
|
```
|
||||||
|
|
Loading…
Reference in a new issue