compiling_for_x11.rst 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. .. _doc_compiling_for_x11:
  2. Compiling for X11 (Linux, *BSD)
  3. ===============================
  4. .. highlight:: shell
  5. Requirements
  6. ------------
  7. For compiling under Linux or other Unix variants, the following is
  8. required:
  9. - GCC < 6 or Clang (**warning:** see note below regarding GCC 6).
  10. - Python 2.7+ (3.0 is untested as of now)
  11. - SCons build system
  12. - pkg-config (used to detect the dependencies below)
  13. - X11, Xcursor, Xinerama and XRandR development libraries
  14. - MesaGL development libraries
  15. - ALSA development libraries
  16. - PulseAudio development libraries (for sound support)
  17. - Freetype (for the editor)
  18. - OpenSSL (for HTTPS and TLS)
  19. - libudev-dev (optional, build with `udev=yes`)
  20. Known issues with GCC 6
  21. ^^^^^^^^^^^^^^^^^^^^^^^
  22. There are known optimisation issues when using GCC 6 (both to compile for X11 and to cross-compile for Windows with MinGW). Until those issues are fixed in Godot's source, or the compiler is made more forgiving again, it is advised not to use GCC 6 to compile Godot as release builds will trigger crashes.
  23. If your distribution provides GCC 6 by default (e.g. Arch or Ubuntu 16.10), you may have to install an older version or Clang (both should be provided in the repositories). You can then force the use of another compiler version via the `CC` and `CXX` scons arguments (e.g. `scons p=x11 CC=gcc-5 CXX=g++-5` if your distribution provides those binaries in its PATH). You can also use `llvm=yes` instead to force the usage of Clang over GCC.
  24. Distro-specific oneliners
  25. ^^^^^^^^^^^^^^^^^^^^^^^^^
  26. +---------------+------------------------------------------------------------------------------------------------------------+
  27. | **Arch** | :: |
  28. | | |
  29. | | pacman -S scons libxcursor libxinerama libxrandr mesa glu alsa-lib pulseaudio freetype2 |
  30. +---------------+------------------------------------------------------------------------------------------------------------+
  31. | **Debian** / | :: |
  32. | **Ubuntu** | |
  33. | | sudo apt-get install build-essential scons pkg-config libx11-dev libxcursor-dev libxinerama-dev \ |
  34. | | libgl1-mesa-dev libglu-dev libasound2-dev libpulse-dev libfreetype6-dev libssl-dev libudev-dev \ |
  35. | | libxrandr-dev |
  36. +---------------+------------------------------------------------------------------------------------------------------------+
  37. | **Fedora** | :: |
  38. | | |
  39. | | sudo dnf install scons pkgconfig libX11-devel libXcursor-devel libXrandr-devel libXinerama-devel \ |
  40. | | mesa-libGL-devel alsa-lib-devel pulseaudio-libs-devel freetype-devel openssl-devel libudev-devel \ |
  41. | | mesa-libGLU-devel |
  42. +---------------+------------------------------------------------------------------------------------------------------------+
  43. | **FreeBSD** | :: |
  44. | | |
  45. | | sudo pkg install scons pkg-config xorg-libraries libXcursor libXrandr xineramaproto libglapi libGLU \ |
  46. | | freetype2 openssl |
  47. +---------------+------------------------------------------------------------------------------------------------------------+
  48. | **Gentoo** | :: |
  49. | | |
  50. | | emerge -an dev-util/scons x11-libs/libX11 x11-libs/libXcursor x11-libs/libXinerama media-libs/mesa \ |
  51. | | media-libs/glu media-libs/alsa-lib media-sound/pulseaudio media-libs/freetype |
  52. +---------------+------------------------------------------------------------------------------------------------------------+
  53. | **Mageia** | :: |
  54. | | |
  55. | | urpmi scons pkgconfig "pkgconfig(alsa)" "pkgconfig(freetype2)" "pkgconfig(glu)" "pkgconfig(libpulse)" \|
  56. | | "pkgconfig(openssl)" "pkgconfig(udev)" "pkgconfig(x11)" "pkgconfig(xcursor)" "pkgconfig(xinerama)"\|
  57. | | "pkgconfig(xrandr)" "pkgconfig(zlib)" |
  58. +---------------+------------------------------------------------------------------------------------------------------------+
  59. | **OpenBSD** | :: |
  60. | | |
  61. | | pkg_add python scons png llvm |
  62. +---------------+------------------------------------------------------------------------------------------------------------+
  63. | **openSUSE** | :: |
  64. | | |
  65. | | sudo zypper install scons pkgconfig libX11-devel libXcursor-devel libXrandr-devel libXinerama-devel \ |
  66. | | Mesa-libGL-devel alsa-devel libpulse-devel freetype-devel openssl-devel libudev-devel \ |
  67. | | libGLU1 |
  68. +---------------+------------------------------------------------------------------------------------------------------------+
  69. | **Solus** | :: |
  70. | | |
  71. | | sudo eopkg install -c system.devel scons libxcursor-devel libxinerama-devel libxrandr-devel \ |
  72. | | mesalib-devel libglu alsa-lib pulseaudio freetype2-devel |
  73. +---------------+------------------------------------------------------------------------------------------------------------+
  74. Compiling
  75. ---------
  76. Start a terminal, go to the root dir of the engine source code and type:
  77. ::
  78. user@host:~/godot$ scons platform=x11
  79. If all goes well, the resulting binary executable will be placed in the
  80. "bin" subdirectory. This executable file contains the whole engine and
  81. runs without any dependencies. Executing it will bring up the project
  82. manager.
  83. .. note::
  84. If you wish to compile using Clang rather than GCC, use this command:
  85. ::
  86. user@host:~/godot$ scons platform=x11 use_llvm=yes
  87. Using Clang appears to be a requirement for OpenBSD, otherwise fonts
  88. would not build.
  89. Building export templates
  90. -------------------------
  91. To build X11 (Linux, *BSD) export templates, run the build system with the
  92. following parameters:
  93. - (32 bits)
  94. ::
  95. user@host:~/godot$ scons platform=x11 tools=no target=release bits=32
  96. user@host:~/godot$ scons platform=x11 tools=no target=release_debug bits=32
  97. - (64 bits)
  98. ::
  99. user@host:~/godot$ scons platform=x11 tools=no target=release bits=64
  100. user@host:~/godot$ scons platform=x11 tools=no target=release_debug bits=64
  101. Note that cross compiling for the opposite bits (64/32) as your host
  102. platform is not always straight-forward and might need a chroot environment.
  103. To create standard export templates, the resulting files must be copied to:
  104. ::
  105. /home/youruser/.godot/templates
  106. and named like this (even for *BSD which is seen as "Linux X11" by Godot):
  107. ::
  108. linux_x11_32_debug
  109. linux_x11_32_release
  110. linux_x11_64_debug
  111. linux_x11_64_release
  112. However, if you are writing your custom modules or custom C++ code, you
  113. might instead want to configure your binaries as custom export templates
  114. here:
  115. .. image:: /img/lintemplates.png
  116. You don't even need to copy them, you can just reference the resulting
  117. files in the bin/ directory of your Godot source folder, so the next
  118. time you build you automatically have the custom templates referenced.