Ir para o conteúdo principal

Instruções para Configurar (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 guide.

Pré-requisitos

  • Pelo o menos o 25GB de espaço em disco e 8GB de memória RAM.
  • Python >= 3.7.
  • Node.js. Existem várias maneiras para instalar o Node. Você pode baixar o código fonte do nodejs.org e compilar. Isto permite somente instalar o Node em seu próprio diretório como o usuário padrão. Ou pode tentar no repositório NodeSource.
  • clang 3.4 ou mais antigo.
  • Cabeçalhos de desenvolvimento do GTK 3 e libnotify.

On Ubuntu >= 20.04, install the following libraries:

$ 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:

$ 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

No RHEL (Red Hat) / CentOS, é necessário instalar as seguintes bibliotecas:

$ 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

No Fedora, é necessário instalar as seguintes bibliotecas:

$ 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:

$ 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

Other distributions may offer similar packages for installation via package managers such as pacman. Or one can compile from source code.

Forçar compilação

Se você deseja configurar para o caminho de arm, você precisa instalar as seguintes dependências:

$ sudo apt-get install libc6-dev-armhf-cross linux-libc-dev-armhf-cross \
g++-arm-linux-gnueabihf

Da mesma forma para arm64, instale as seguintes dependências:

$ sudo apt-get install libc6-dev-arm64-cross linux-libc-dev-arm64-cross \
g++-aarch64-linux-gnu

And to cross-compile for arm or targets, you should pass the target_cpu parameter to gn gen:

$ gn gen out/Testing --args='import(...) target_cpu="arm"'

Compilando

Veja Instruções de build: GN

Solução de Problemas

Erro ao carregar bibliotecas compartilhadas: libtinfo.so.5

Prebuilt clang will try to link to libtinfo.so.5. Depending on the host architecture, symlink to appropriate libncurses:

$ sudo ln -s /usr/lib/libncurses.so.5 /usr/lib/libtinfo.so.5

Tópicos Avançados

The default building configuration is targeted for major desktop Linux distributions. To build for a specific distribution or device, the following information may help you.

Usando o clang em vez de fazer o download dos binários de clang

Por padrão o Electron é feito com código binário clang pre-produzido e fornecido pelo projeto Chromium. Se por alguma razão quer construir usando clang instalado no seu sistema, pode especificar o argumento clang_base_path nos argumentos do GN.

Por exemplo, se o clang estiver instalado em /usr/local/bin/clang:

$ gn gen out/Testing --args='import("//electron/build/args/testing.gn") clang_base_path = "/usr/local/bin"'

Utilizando compiladores diferentes de clang

Construir Electron com compiladores diferentes de clang não é suportado.