electron/docs/development/build-instructions-linux.md

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

130 lines
4.5 KiB
Markdown
Raw Normal View History

2015-08-31 05:30:12 +00:00
# Build Instructions (Linux)
Follow the guidelines below for building **Electron itself** on Linux, for the purposes of creating custom Electron binaries. For bundling and distributing your app code with the prebuilt Electron binaries, see the [application distribution][application-distribution] guide.
[application-distribution]: ../tutorial/application-distribution.md
2014-02-20 10:39:24 +00:00
## Prerequisites
* At least 25GB disk space and 8GB RAM.
2022-04-11 23:05:21 +00:00
* Python >= 3.7.
* Node.js. There are various ways to install Node. You can download
source code from [nodejs.org](https://nodejs.org) and compile it.
2015-08-31 05:30:12 +00:00
Doing so permits installing Node on your own home directory as a standard user.
Or try repositories such as [NodeSource](https://nodesource.com/blog/nodejs-v012-iojs-and-the-nodesource-linux-repositories).
2017-07-27 17:29:41 +00:00
* [clang](https://clang.llvm.org/get_started.html) 3.4 or later.
* Development headers of GTK 3 and libnotify.
On Ubuntu >= 20.04, install the following libraries:
```sh
$ sudo apt-get install build-essential clang libdbus-1-dev libgtk-3-dev \
libnotify-dev libasound2-dev libcap-dev \
libcups2-dev libxtst-dev \
libxss1 libnss3-dev gcc-multilib g++-multilib curl \
gperf bison python3-dbusmock openjdk-8-jre
```
On Ubuntu < 20.04, install the following libraries:
2017-11-24 10:13:57 +00:00
```sh
2018-02-15 21:08:55 +00:00
$ sudo apt-get install build-essential clang libdbus-1-dev libgtk-3-dev \
libnotify-dev libgnome-keyring-dev \
libasound2-dev libcap-dev libcups2-dev libxtst-dev \
libxss1 libnss3-dev gcc-multilib g++-multilib curl \
gperf bison python-dbusmock openjdk-8-jre
```
On RHEL / CentOS, install the following libraries:
2017-11-24 10:13:57 +00:00
```sh
2018-02-15 21:08:55 +00:00
$ sudo yum install clang dbus-devel gtk3-devel libnotify-devel \
libgnome-keyring-devel xorg-x11-server-utils libcap-devel \
cups-devel libXtst-devel alsa-lib-devel libXrandr-devel \
nss-devel python-dbusmock openjdk-8-jre
```
On Fedora, install the following libraries:
2017-11-24 10:13:57 +00:00
```sh
$ sudo dnf install clang dbus-devel gperf gtk3-devel \
libnotify-devel libgnome-keyring-devel libcap-devel \
cups-devel libXtst-devel alsa-lib-devel libXrandr-devel \
nss-devel python-dbusmock
```
On Arch Linux / Manjaro, install the following libraries:
```sh
$ sudo pacman -Syu base-devel clang libdbus gtk2 libnotify \
libgnome-keyring alsa-lib libcap libcups libxtst \
libxss nss gcc-multilib curl gperf bison \
python2 python-dbusmock jdk8-openjdk
```
2015-07-02 07:54:14 +00:00
Other distributions may offer similar packages for installation via package
managers such as pacman. Or one can compile from source code.
2015-07-02 07:54:14 +00:00
### Cross compilation
2015-08-31 05:30:12 +00:00
If you want to build for an `arm` target you should also install the following
dependencies:
2017-11-24 10:13:57 +00:00
```sh
$ sudo apt-get install libc6-dev-armhf-cross linux-libc-dev-armhf-cross \
g++-arm-linux-gnueabihf
```
Similarly for `arm64`, install the following:
2017-11-24 10:13:57 +00:00
```sh
$ sudo apt-get install libc6-dev-arm64-cross linux-libc-dev-arm64-cross \
g++-aarch64-linux-gnu
```
chore: bump chromium to 102.0.4999.0 (main) (#33731) * chore: bump chromium in DEPS to 102.0.4999.0 * 3576640: Set OOM handler during V8 initialization https://chromium-review.googlesource.com/c/chromium/src/+/3576640 * 3574964: Remove deprecated base::Value usage in print_settings_conversion code. https://chromium-review.googlesource.com/c/chromium/src/+/3574964 * 3570062: Replicate Active state to render process for all RenderViews. https://chromium-review.googlesource.com/c/chromium/src/+/3570062 * chore: fixup patch indices * 3380402: Remove legacy SwiftShader https://chromium-review.googlesource.com/c/chromium/src/+/3380402 * 3570254: [Local Fonts] Rename permission name from FONT_ACCESS to LOCAL_FONTS. https://chromium-review.googlesource.com/c/chromium/src/+/3570254 * 3572172: Rename or remove several parameters involved in creation of MimeHandler streams https://chromium-review.googlesource.com/c/chromium/src/+/3572172 * fix: add missing base/bits include * chore: fix lint * chore: remove ia32 Linux support * chore: patch out swift-format cipd dep on macOS * build: apply patch better * build: reset all caches * build: update zip manifests to remove swiftshared libraries Refs: https://chromium-review.googlesource.com/c/chromium/src/+/3380402 * Revert "build: update zip manifests to remove swiftshared libraries" This reverts commit 6aeec01ef1a79425a7b7d8c1cfb131a26b91c494. * Revert "3380402: Remove legacy SwiftShader" This reverts commit 4c7eebbbf2d0a459cc192959e17ae20f970c2da2. * build: remove unused swiftshader egl libraries Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com> Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> Co-authored-by: Samuel Attard <sattard@salesforce.com>
2022-04-22 22:36:22 +00:00
And to cross-compile for `arm` or targets, you should pass the
`target_cpu` parameter to `gn gen`:
2015-07-02 07:54:14 +00:00
2017-11-24 10:13:57 +00:00
```sh
$ gn gen out/Testing --args='import(...) target_cpu="arm"'
2015-07-02 07:54:14 +00:00
```
2014-02-20 10:39:24 +00:00
## Building
See [Build Instructions: GN](build-instructions-gn.md)
2014-02-20 10:39:24 +00:00
## Troubleshooting
2015-08-31 05:30:12 +00:00
### Error While Loading Shared Libraries: libtinfo.so.5
2017-06-19 15:45:06 +00:00
Prebuilt `clang` will try to link to `libtinfo.so.5`. Depending on the host
2015-08-31 05:30:12 +00:00
architecture, symlink to appropriate `libncurses`:
2017-11-24 10:13:57 +00:00
```sh
$ sudo ln -s /usr/lib/libncurses.so.5 /usr/lib/libtinfo.so.5
```
## Advanced topics
The default building configuration is targeted for major desktop Linux
2017-07-27 17:29:41 +00:00
distributions. To build for a specific distribution or device, the following
information may help you.
2016-05-02 13:32:43 +00:00
### Using system `clang` instead of downloaded `clang` binaries
By default Electron is built with prebuilt
2017-07-27 17:29:41 +00:00
[`clang`](https://clang.llvm.org/get_started.html) binaries provided by the
Chromium project. If for some reason you want to build with the `clang`
installed in your system, you can specify the `clang_base_path` argument in the
GN args.
2016-05-02 13:32:43 +00:00
For example if you installed `clang` under `/usr/local/bin/clang`:
2016-05-02 13:32:43 +00:00
2017-11-24 10:13:57 +00:00
```sh
$ gn gen out/Testing --args='import("//electron/build/args/testing.gn") clang_base_path = "/usr/local/bin"'
2016-05-02 13:32:43 +00:00
```
2017-07-27 17:29:41 +00:00
### Using compilers other than `clang`
2016-05-02 13:32:43 +00:00
Building Electron with compilers other than `clang` is not supported.