构建步骤 (Linux)

遵循下面的准则在 Linux 上创建 Electron 。

基本要求

  • 至少 25GB 硬盘空间 和 8GB 内存.
  • Python 2.7.x. 一些发行版如 CentOS 6.x 仍然使用 Python 2.6.x ,所以或许需要 check 你的 Python 版本,使用 python -V.

    请确保您的系统和Python的版本至少支持TLS 1.2。 您可以运行下面这个脚本来测试:

    1. $ npx @electron/check-python-tls

    如果脚本反映你的设置使用过时的安全协议,请用系统的软件包管理器更新Python在2.7.x中的最高版本。 或者,您也可以访问ttps://www.python.org/downloads/,以获取更加详细的指导信息。

  • Node.js. 有多种方法安装 Node.js。 您可以从 Nodejs.org 下载源代码并进行编译。 也可以作为一个标准的用户在 home 目录下安装 node. 或者尝试使用 NodeSource 仓库

  • clang 3.4 或更高版本。
  • Development headers of GTK 3 and libnotify.

在 Ubuntu, 安装下面的库:

  1. $ sudo apt-get install build-essential clang libdbus-1-dev libgtk-3-dev \
  2. libnotify-dev libgnome-keyring-dev \
  3. libasound2-dev libcap-dev libcups2-dev libxtst-dev \
  4. libxss1 libnss3-dev gcc-multilib g++-multilib curl \
  5. gperf bison python-dbusmock openjdk-8-jre

在 RHEL / CentOS, 安装下面的库:

  1. $ sudo yum install clang dbus-devel gtk3-devel libnotify-devel \
  2. libgnome-keyring-devel xorg-x11-server-utils libcap-devel \
  3. cups-devel libXtst-devel alsa-lib-devel libXrandr-devel \
  4. nss-devel python-dbusmock openjdk-8-jre

在 Fedora, 安装下面的库:

  1. $ sudo dnf install clang dbus-devel gtk3-devel libnotify-devel \
  2. libgnome-keyring-devel xorg-x11-server-utils libcap-devel \
  3. cups-devel libXtst-devel alsa-lib-devel libXrandr-devel \
  4. nss-devel python-dbusmock openjdk-8-jre

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

交叉编译

如果想创建一个 arm target ,应当还要下载下面的依赖:

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

类似地,对于 arm64 平台,请安装下列内容:

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

若要为 armia32 平台的目标设备交叉编译,您应当为 target_cpu 添加gn gen 参数:

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

构建

参照Build Instructions: GN

疑难解答

加载共享库时出现错误: libtinfo.so.5

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

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

高级提示

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.

使用系统提供的 clang 替换下载的 clang 二进制文件

默认情况下, Electron 是由 Chromium 项目提供的预生成的 clang 二进制文件构建的。 如果出于某些原因你想用你系统已安装的 clang来构建,你可以在GN的参数中指定clang_base_path

例如如果你的 clang安装在 /usr/local/bin/clang下:

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

使用 clang 之外的其它编译器

Electron 不支持除 clang之外的其他编译器构建