compiling_for_linuxbsd.rst 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666
  1. .. _doc_compiling_for_linuxbsd:
  2. Compiling for Linux, \*BSD
  3. ==========================
  4. .. highlight:: shell
  5. .. seealso::
  6. This page describes how to compile Linux editor and export template binaries from source.
  7. If you're looking to export your project to Linux instead, read :ref:`doc_exporting_for_linux`.
  8. Requirements
  9. ------------
  10. For compiling under Linux or other Unix variants, the following is
  11. required:
  12. - GCC 9+ or Clang 6+.
  13. - `Python 3.8+ <https://www.python.org/downloads/>`_.
  14. - `SCons 4.0+ <https://scons.org/pages/download.html>`_ build system.
  15. - pkg-config (used to detect the development libraries listed below).
  16. - Development libraries:
  17. - X11, Xcursor, Xinerama, Xi and XRandR.
  18. - Wayland and wayland-scanner.
  19. - Mesa.
  20. - ALSA.
  21. - PulseAudio.
  22. - *Optional* - libudev (build with ``udev=yes``).
  23. .. seealso::
  24. To get the Godot source code for compiling, see :ref:`doc_getting_source`.
  25. For a general overview of SCons usage for Godot, see :ref:`doc_introduction_to_the_buildsystem`.
  26. .. _doc_compiling_for_linuxbsd_oneliners:
  27. Distro-specific one-liners
  28. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  29. .. tabs::
  30. .. tab:: Alpine Linux
  31. ::
  32. apk add \
  33. scons \
  34. pkgconf \
  35. gcc \
  36. g++ \
  37. libx11-dev \
  38. libxcursor-dev \
  39. libxinerama-dev \
  40. libxi-dev \
  41. libxrandr-dev \
  42. mesa-dev \
  43. eudev-dev \
  44. alsa-lib-dev \
  45. pulseaudio-dev
  46. .. tab:: Arch Linux
  47. ::
  48. pacman -Sy --noconfirm --needed \
  49. scons \
  50. pkgconf \
  51. gcc \
  52. libxcursor \
  53. libxinerama \
  54. libxi \
  55. libxrandr \
  56. wayland-utils \
  57. mesa \
  58. glu \
  59. libglvnd \
  60. alsa-lib \
  61. pulseaudio
  62. .. tab:: Debian/Ubuntu
  63. ::
  64. sudo apt-get update
  65. sudo apt-get install -y \
  66. build-essential \
  67. scons \
  68. pkg-config \
  69. libx11-dev \
  70. libxcursor-dev \
  71. libxinerama-dev \
  72. libgl1-mesa-dev \
  73. libglu1-mesa-dev \
  74. libasound2-dev \
  75. libpulse-dev \
  76. libudev-dev \
  77. libxi-dev \
  78. libxrandr-dev \
  79. libwayland-dev
  80. .. tab:: Fedora
  81. ::
  82. sudo dnf install -y \
  83. scons \
  84. pkgconfig \
  85. gcc-c++ \
  86. libstdc++-static \
  87. wayland-devel
  88. .. tab:: FreeBSD
  89. ::
  90. pkg install \
  91. devel/scons \
  92. pkgconf \
  93. xorg-libraries \
  94. libXcursor \
  95. libXrandr \
  96. libXi \
  97. xorgproto \
  98. libGLU \
  99. alsa-lib \
  100. pulseaudio \
  101. wayland
  102. .. tab:: Gentoo
  103. ::
  104. emerge --sync
  105. emerge -an \
  106. dev-build/scons \
  107. x11-libs/libX11 \
  108. x11-libs/libXcursor \
  109. x11-libs/libXinerama \
  110. x11-libs/libXi \
  111. dev-util/wayland-scanner \
  112. media-libs/mesa \
  113. media-libs/glu \
  114. media-libs/alsa-lib \
  115. media-sound/pulseaudio
  116. .. tab:: Mageia
  117. ::
  118. sudo urpmi --auto \
  119. scons \
  120. task-c++-devel \
  121. wayland-devel \
  122. "pkgconfig(alsa)" \
  123. "pkgconfig(glu)" \
  124. "pkgconfig(libpulse)" \
  125. "pkgconfig(udev)" \
  126. "pkgconfig(x11)" \
  127. "pkgconfig(xcursor)" \
  128. "pkgconfig(xinerama)" \
  129. "pkgconfig(xi)" \
  130. "pkgconfig(xrandr)"
  131. .. tab:: NetBSD
  132. ::
  133. pkgin install \
  134. pkg-config \
  135. py313-scons
  136. .. hint::
  137. For audio support, you can optionally install ``pulseaudio``.
  138. .. tab:: OpenBSD
  139. ::
  140. pkg_add \
  141. python \
  142. scons \
  143. llvm
  144. .. tab:: openKylin
  145. ::
  146. sudo apt update
  147. sudo apt install -y \
  148. python3-pip \
  149. build-essential \
  150. pkg-config \
  151. libx11-dev \
  152. libxcursor-dev \
  153. libxinerama-dev \
  154. libgl1-mesa-dev \
  155. libglu1-mesa-dev \
  156. libasound2-dev \
  157. libpulse-dev \
  158. libudev-dev \
  159. libxi-dev \
  160. libxrandr-dev \
  161. libwayland-dev
  162. sudo pip install scons
  163. .. tab:: openSUSE
  164. ::
  165. sudo zypper install -y \
  166. scons \
  167. pkgconfig \
  168. libX11-devel \
  169. libXcursor-devel \
  170. libXrandr-devel \
  171. libXinerama-devel \
  172. libXi-devel \
  173. wayland-devel \
  174. Mesa-libGL-devel \
  175. alsa-devel \
  176. libpulse-devel \
  177. libudev-devel \
  178. gcc-c++ \
  179. libGLU1
  180. .. tab:: Solus
  181. ::
  182. eopkg install -y \
  183. -c system.devel \
  184. scons \
  185. libxcursor-devel \
  186. libxinerama-devel \
  187. libxi-devel \
  188. libxrandr-devel \
  189. wayland-devel \
  190. mesalib-devel \
  191. libglu \
  192. alsa-lib-devel \
  193. pulseaudio-devel
  194. Compiling
  195. ---------
  196. Start a terminal, go to the root dir of the engine source code and type:
  197. ::
  198. scons platform=linuxbsd
  199. .. note::
  200. Prior to Godot 4.0, the Linux/\*BSD target was called ``x11`` instead of
  201. ``linuxbsd``. If you are looking to compile Godot 3.x, make sure to use the
  202. `3.x branch of this documentation <https://docs.godotengine.org/en/3.6/development/compiling/compiling_for_x11.html>`__.
  203. .. tip::
  204. If you are compiling Godot to make changes or contribute to the engine,
  205. you may want to use the SCons options ``dev_build=yes`` or ``dev_mode=yes``.
  206. See :ref:`doc_introduction_to_the_buildsystem_development_and_production_aliases`
  207. for more info.
  208. If all goes well, the resulting binary executable will be placed in the
  209. "bin" subdirectory. This executable file contains the whole engine and
  210. runs without any dependencies. Executing it will bring up the Project
  211. Manager.
  212. .. note::
  213. If you wish to compile using Clang rather than GCC, use this command:
  214. ::
  215. scons platform=linuxbsd use_llvm=yes
  216. Using Clang appears to be a requirement for OpenBSD, otherwise fonts
  217. would not build.
  218. For RISC-V architecture devices, use the Clang compiler instead of the GCC compiler.
  219. .. note::
  220. Compiling on some platforms such as OpenBSD may require more memory than
  221. available by default.
  222. To increase the memory limit on OpenBSD within the maximum for the current user,
  223. run ``ulimit -d {new amount in kB}``.
  224. .. tip:: If you are compiling Godot for production use, you can
  225. make the final executable smaller and faster by adding the
  226. SCons option ``production=yes``. This enables additional compiler
  227. optimizations and link-time optimization.
  228. LTO takes some time to run and requires about 7 GB of available RAM
  229. while compiling. If you're running out of memory with the above option,
  230. use ``production=yes lto=none`` or ``production=yes lto=thin`` for a
  231. lightweight but less effective form of LTO.
  232. .. note:: If you want to use separate editor settings for your own Godot builds
  233. and official releases, you can enable
  234. :ref:`doc_data_paths_self_contained_mode` by creating a file called
  235. ``._sc_`` or ``_sc_`` in the ``bin/`` folder.
  236. Compiling with AccessKit support
  237. --------------------------------
  238. AccessKit provides support for screen readers.
  239. By default, Godot is built with AccessKit dynamically linked. You can use it by placing
  240. ``accesskit.so`` alongside the executable.
  241. .. note:: You can use dynamically linked AccessKit with export templates as well, rename
  242. the SO to ``accesskit.{architecture}.so``
  243. and place them alongside the export template executables, and the libraries will
  244. be automatically copied during the export process.
  245. To compile Godot with statically linked AccessKit:
  246. - Download the pre-built static libraries from `godot-accesskit-c-static library <https://github.com/godotengine/godot-accesskit-c-static/releases>`_, and unzip them.
  247. - When building Godot, add ``accesskit_sdk_path={path}`` to tell SCons where to look for the AccessKit libraries:
  248. ::
  249. scons platform=linuxbsd accesskit_sdk_path=<...>
  250. .. note:: You can optionally build the godot-angle-static libraries yourself with
  251. the following steps:
  252. 1. Clone the `godot-accesskit-c-static <https://github.com/godotengine/godot-accesskit-c-static/>`_
  253. directory and navigate to it.
  254. 2. Run the following command:
  255. ::
  256. cd accesskit-c
  257. cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
  258. cmake --build build
  259. cmake --install build
  260. The AccessKit static library should be built using the same compiler you are
  261. using for building Godot.
  262. Running a headless/server build
  263. -------------------------------
  264. To run in *headless* mode which provides editor functionality to export
  265. projects in an automated manner, use the normal build:
  266. ::
  267. scons platform=linuxbsd target=editor
  268. And then use the ``--headless`` command line argument:
  269. ::
  270. ./bin/godot.linuxbsd.editor.x86_64 --headless
  271. To compile a debug *server* build which can be used with
  272. :ref:`remote debugging tools <doc_command_line_tutorial>`, use:
  273. ::
  274. scons platform=linuxbsd target=template_debug
  275. To compile a *server* build which is optimized to run dedicated game servers, use:
  276. ::
  277. scons platform=linuxbsd target=template_release production=yes
  278. Building export templates
  279. -------------------------
  280. .. warning:: Linux binaries usually won't run on distributions that are
  281. older than the distribution they were built on. If you wish to
  282. distribute binaries that work on most distributions,
  283. you should build them on an old distribution such as Ubuntu 20.04.
  284. You can use a virtual machine or a container to set up a suitable
  285. build environment.
  286. To build Linux or \*BSD export templates, run the build system with the
  287. following parameters:
  288. - (32 bits)
  289. ::
  290. scons platform=linuxbsd target=template_release arch=x86_32
  291. scons platform=linuxbsd target=template_debug arch=x86_32
  292. - (64 bits)
  293. ::
  294. scons platform=linuxbsd target=template_release arch=x86_64
  295. scons platform=linuxbsd target=template_debug arch=x86_64
  296. Note that cross-compiling for the opposite bits (64/32) as your host
  297. platform is not always straight-forward and might need a chroot environment.
  298. To create standard export templates, the resulting files in the ``bin/`` folder
  299. must be copied to:
  300. ::
  301. $HOME/.local/share/godot/export_templates/<version>/
  302. and named like this (even for \*BSD which is seen as "Linux/X11" by Godot):
  303. .. code:: text
  304. linux_debug.arm32
  305. linux_debug.arm64
  306. linux_debug.x86_32
  307. linux_debug.x86_64
  308. linux_release.arm32
  309. linux_release.arm64
  310. linux_release.x86_32
  311. linux_release.x86_64
  312. However, if you are writing your custom modules or custom C++ code, you
  313. might instead want to configure your binaries as custom export templates
  314. in the project export menu. You must have **Advanced Options** enabled
  315. to set this.
  316. .. image:: img/lintemplates.webp
  317. You don't even need to copy them, you can just reference the resulting
  318. files in the ``bin/`` directory of your Godot source folder, so the next
  319. time you build, you automatically have the custom templates referenced.
  320. Cross-compiling for RISC-V devices
  321. ----------------------------------
  322. To cross-compile Godot for RISC-V devices, we need to setup the following items:
  323. - `riscv-gnu-toolchain <https://github.com/riscv-collab/riscv-gnu-toolchain/releases>`__.
  324. While we are not going to use this directly, it provides us with a sysroot, as well
  325. as header and libraries files that we will need. There are many versions to choose
  326. from, however, the older the toolchain, the more compatible our final binaries will be.
  327. If in doubt, `use this version <https://github.com/riscv-collab/riscv-gnu-toolchain/releases/tag/2023.07.07>`__,
  328. and download ``riscv64-glibc-ubuntu-20.04-gcc-nightly-2023.07.07-nightly.tar.gz``. Extract
  329. it somewhere and remember its path.
  330. - `mold <https://github.com/rui314/mold/releases>`__. This fast linker,
  331. is the only one that correctly links the resulting binary. Download it, extract it,
  332. and make sure to add its ``bin`` folder to your PATH. Run
  333. ``mold --help | grep support`` to check if your version of Mold supports RISC-V.
  334. If you don't see RISC-V, your Mold may need to be updated.
  335. To make referencing our toolchain easier, we can set an environment
  336. variable like this:
  337. ::
  338. export RISCV_TOOLCHAIN_PATH="path to toolchain here"
  339. This way, we won't have to manually set the directory location
  340. each time we want to reference it.
  341. With all the above setup, we are now ready to build Godot.
  342. Go to the root of the source code, and execute the following build command:
  343. ::
  344. PATH="$RISCV_TOOLCHAIN_PATH/bin:$PATH" \
  345. scons arch=rv64 use_llvm=yes linker=mold lto=none target=editor \
  346. ccflags="--sysroot=$RISCV_TOOLCHAIN_PATH/sysroot --gcc-toolchain=$RISCV_TOOLCHAIN_PATH -target riscv64-unknown-linux-gnu" \
  347. linkflags="--sysroot=$RISCV_TOOLCHAIN_PATH/sysroot --gcc-toolchain=$RISCV_TOOLCHAIN_PATH -target riscv64-unknown-linux-gnu"
  348. .. note::
  349. RISC-V GCC has `bugs with its atomic operations <https://github.com/riscv-collab/riscv-gcc/issues/15>`__
  350. which prevent it from compiling Godot correctly. That's why Clang is used instead. Make sure that
  351. it *can* compile to RISC-V. You can verify by executing this command ``clang -print-targets``,
  352. make sure you see ``riscv64`` on the list of targets.
  353. .. warning:: The code above includes adding ``$RISCV_TOOLCHAIN_PATH/bin`` to the PATH,
  354. but only for the following ``scons`` command. Since riscv-gnu-toolchain uses
  355. its own Clang located in the ``bin`` folder, adding ``$RISCV_TOOLCHAIN_PATH/bin``
  356. to your user's PATH environment variable may block you from accessing another
  357. version of Clang if one is installed. For this reason it's not recommended to make
  358. adding the bin folder permanent. You can also omit the ``PATH="$RISCV_TOOLCHAIN_PATH/bin:$PATH"`` line
  359. if you want to use scons with self-installed version of Clang, but it may have
  360. compatibility issues with riscv-gnu-toolchain.
  361. The command is similar in nature, but with some key changes. ``ccflags`` and
  362. ``linkflags`` append additional flags to the build. ``--sysroot`` points to
  363. a folder simulating a Linux system, it contains all the headers, libraries,
  364. and ``.so`` files Clang will use. ``--gcc-toolchain`` tells Clang where
  365. the complete toolchain is, and ``-target riscv64-unknown-linux-gnu``
  366. indicates to Clang the target architecture, and OS we want to build for.
  367. If all went well, you should now see a ``bin`` directory, and within it,
  368. a binary similar to the following:
  369. .. code:: text
  370. godot.linuxbsd.editor.rv64.llvm
  371. You can now copy this executable to your favorite RISC-V device,
  372. then launch it there by double-clicking, which should bring up
  373. the project manager.
  374. If you later decide to compile the export templates, copy the above
  375. build command but change the value of ``target`` to ``template_debug`` for
  376. a debug build, or ``template_release`` for a release build.
  377. Using Clang and LLD for faster development
  378. ------------------------------------------
  379. You can also use Clang and LLD to build Godot. This has two upsides compared to
  380. the default GCC + GNU ld setup:
  381. - LLD links Godot significantly faster compared to GNU ld or gold. This leads to
  382. faster iteration times.
  383. - Clang tends to give more useful error messages compared to GCC.
  384. To do so, install Clang and the ``lld`` package from your distribution's package manager
  385. then use the following SCons command:
  386. ::
  387. scons platform=linuxbsd use_llvm=yes linker=lld
  388. After the build is completed, a new binary with a ``.llvm`` suffix will be
  389. created in the ``bin/`` folder.
  390. It's still recommended to use GCC for production builds as they can be compiled using
  391. link-time optimization, making the resulting binaries smaller and faster.
  392. If this error occurs:
  393. .. code:: text
  394. /usr/bin/ld: cannot find -l:libatomic.a: No such file or directory
  395. There are two solutions:
  396. - In your SCons command, add the parameter ``use_static_cpp=no``.
  397. - Follow `these instructions <https://github.com/ivmai/libatomic_ops#installation-and-usage>`__ to configure, build, and
  398. install ``libatomic_ops``. Then, copy ``/usr/lib/libatomic_ops.a`` to ``/usr/lib/libatomic.a``, or create a soft link
  399. to ``libatomic_ops`` by command ``ln -s /usr/lib/libatomic_ops.a /usr/lib/libatomic.a``. The soft link can ensure the
  400. latest ``libatomic_ops`` will be used without the need to copy it every time when it is updated.
  401. Using mold for faster development
  402. ---------------------------------
  403. For even faster linking compared to LLD, you can use `mold <https://github.com/rui314/mold>`__.
  404. mold can be used with either GCC or Clang.
  405. As of January 2023, mold is not readily available in Linux distribution
  406. repositories, so you will have to install its binaries manually.
  407. - Download mold binaries from its `releases page <https://github.com/rui314/mold/releases/latest>`__.
  408. - Extract the ``.tar.gz`` file, then move the extracted folder to a location such as ``.local/share/mold``.
  409. - Add ``$HOME/.local/share/mold/bin`` to your user's ``PATH`` environment variable.
  410. For example, you can add the following line at the end of your ``$HOME/.bash_profile`` file:
  411. ::
  412. PATH="$HOME/.local/share/mold/bin:$PATH"
  413. - Open a new terminal (or run ``source "$HOME/.bash_profile"``),
  414. then use the following SCons command when compiling Godot:
  415. ::
  416. scons platform=linuxbsd linker=mold
  417. Using system libraries for faster development
  418. ---------------------------------------------
  419. `Godot bundles the source code of various third-party libraries. <https://github.com/godotengine/godot/tree/master/thirdparty>`__
  420. You can choose to use system versions of third-party libraries instead.
  421. This makes the Godot binary faster to link, as third-party libraries are
  422. dynamically linked. Therefore, they don't need to be statically linked
  423. every time you build the engine (even on small incremental changes).
  424. However, not all Linux distributions have packages for third-party libraries
  425. available (or they may not be up-to-date).
  426. Moving to system libraries can reduce linking times by several seconds on slow
  427. CPUs, but it requires manual testing depending on your Linux distribution. Also,
  428. you may not be able to use system libraries for everything due to bugs in the
  429. system library packages (or in the build system, as this feature is less
  430. tested).
  431. To compile Godot with system libraries, install these dependencies **on top** of the ones
  432. listed in the :ref:`doc_compiling_for_linuxbsd_oneliners`:
  433. .. tabs::
  434. .. tab:: Debian/Ubuntu
  435. ::
  436. sudo apt-get update
  437. sudo apt-get install -y \
  438. libembree-dev \
  439. libenet-dev \
  440. libfreetype-dev \
  441. libpng-dev \
  442. zlib1g-dev \
  443. libgraphite2-dev \
  444. libharfbuzz-dev \
  445. libogg-dev \
  446. libtheora-dev \
  447. libvorbis-dev \
  448. libwebp-dev \
  449. libmbedtls-dev \
  450. libminiupnpc-dev \
  451. libpcre2-dev \
  452. libsdl3-dev \
  453. libzstd-dev \
  454. libsquish-dev \
  455. libicu-dev
  456. .. tab:: Fedora
  457. ::
  458. sudo dnf install -y \
  459. embree-devel \
  460. enet-devel \
  461. glslang-devel \
  462. graphite2-devel \
  463. harfbuzz-devel \
  464. libicu-devel \
  465. libsquish-devel \
  466. libtheora-devel \
  467. libvorbis-devel \
  468. libwebp-devel \
  469. libzstd-devel \
  470. mbedtls-devel \
  471. miniupnpc-devel \
  472. SDL3-devel
  473. After installing all required packages, use the following command to build Godot:
  474. .. NOTE: Some `builtin_` options aren't used here because they break the build as of January 2023
  475. (tested on Fedora 37).
  476. ::
  477. scons platform=linuxbsd builtin_embree=no builtin_enet=no builtin_freetype=no builtin_graphite=no builtin_harfbuzz=no builtin_libogg=no builtin_libpng=no builtin_libtheora=no builtin_libvorbis=no builtin_libwebp=no builtin_mbedtls=no builtin_miniupnpc=no builtin_pcre2=no builtin_sdl=no builtin_zlib=no builtin_zstd=no
  478. On Debian stable, you will need to remove `builtin_embree=no` as the system-provided
  479. Embree version is too old to work with Godot's latest `master` branch
  480. (which requires Embree 4).
  481. You can view a list of all built-in libraries that have system alternatives by
  482. running ``scons -h``, then looking for options starting with ``builtin_``.
  483. .. warning::
  484. When using system libraries, the resulting binary is **not** portable
  485. across Linux distributions anymore. Do not use this approach for creating
  486. binaries you intend to distribute to others, unless you're creating a
  487. package for a Linux distribution.