Skip to content
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
16 changes: 12 additions & 4 deletions engine_details/development/compiling/compiling_for_linuxbsd.rst
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ Distro-specific one-liners
::

pkg install \
py37-scons \
devel/scons \
pkgconf \
xorg-libraries \
libXcursor \
Expand All @@ -127,7 +127,8 @@ Distro-specific one-liners
xorgproto \
libGLU \
alsa-lib \
pulseaudio
pulseaudio \
wayland

.. tab:: Gentoo

Expand Down Expand Up @@ -168,9 +169,9 @@ Distro-specific one-liners

::

pkg_add \
pkgin install \
pkg-config \
py37-scons
py313-scons

.. hint::

Expand Down Expand Up @@ -282,6 +283,13 @@ Manager.
would not build.
For RISC-V architecture devices, use the Clang compiler instead of the GCC compiler.

.. note::

Compiling on some platforms such as OpenBSD may require more memory than
available by default.
To increase the memory limit on OpenBSD within the maximum for the current user,
run ``ulimit -d {new amount in kB}``.

.. tip:: If you are compiling Godot for production use, you can
make the final executable smaller and faster by adding the
SCons option ``production=yes``. This enables additional compiler
Expand Down
Loading