These instructions are for building Pale Moon 33.3.0 and newer and assumes you want to build the latest release.
mk_add_options MOZ_MAKE_FLAGS="-jN"
option)Version | Status | Notes |
---|---|---|
14.x | Experimental Support | Not widely tested, but should build. |
13.x | Generally Considered Stable | Mid-term tested. |
12.x | Generally Considered Stable | Mid-term tested. |
11.x | Recommended | Mid-term tested. Currently in-use for MCP Applications. |
10.x | Deprecated | Mid-term tested. |
9.x | Deprecated | Long-term tested. |
8.x | Deprecated | Mid-term tested. |
7.x (7.1+) | Deprecated | Long-term tested. |
<=7.0 | Unsupported | Used Pre-Unified XUL Platform. |
Git is the official way to get the Pale Moon source code from our repository server and to build.
cd /location-you-picked/palemoon-source/
git clone https://repo.palemoon.org/MoonchildProductions/Pale-Moon.git ./
git submodule init && git submodule update
git checkout release && git submodule update
These instructions are for building Pale Moon 29.4.1 to 29.4.6 as well as older versions that were released as source code snapshot archives.
This requires downloading source archives from the Pale Moon Archive Server:
palemoon-n.n.n-source.tar.xz
Install the required build dependencies by executing the following commands:
yum install epel-release
yum install gtk3-devel dbus-glib-devel GConf2-devel yasm mesa-libGL-devel \
alsa-lib-devel libXt-devel zlib-devel openssl-devel sqlite-devel \
bzip2-devel pulseaudio-libs-devel
yum groupinstall 'Development Tools'
yum install centos-release-scl
yum install devtoolset-9-toolchain
Because the system compiler is too old we need to activate the GCC 9 Software Collection environment before we can build. To do so execute the following command:
scl enable devtoolset-9 bash
If you are building a GTK2 build then you will need the development package for it. To install it execute the following command:
yum install gtk2-devel
The generic x86_64 packages that we distribute are built on Oracle Linux 8 with GCC 11.4.
Install the required build dependencies by executing the following commands:
dnf install epel-release
dnf config-manager --set-enabled ol8_codeready_builder
dnf install gtk3-devel dbus-glib-devel GConf2-devel yasm mesa-libGL-devel \
alsa-lib-devel libXt-devel openssl-devel sqlite-devel pulseaudio-libs-devel \
python2 gtk2-devel
dnf groupinstall 'Development Tools'
This may also apply to derivatives of Debian or Ubuntu, e.g. Linux Mint. You may need additional packages based on your installation.
Install the required build dependencies by executing the following command:
apt-get install build-essential libgtk2.0-dev libdbus-glib-1-dev \
yasm libegl1-mesa-dev libasound2-dev libxt-dev zlib1g-dev libssl-dev \
libsqlite3-dev libbz2-dev libpulse-dev libgconf2-dev libx11-xcb-dev \
zip python2.7 python-dbus
Install the required build dependencies by executing the following command:
pacman -Syu gtk2 dbus-glib desktop-file-utils libxt mime-types \
alsa-lib startup-notification unzip zip yasm libpulse gcc openssl-1.1
Install the following from AUR using your preferred pacman wrapper (e.g. yay):
python2
(required).python2-dbus
is used for build notifications.gconf
is necessary if you're building with GConf enabled.Install the required build dependencies by executing the following commands:
# GCC 7 unmask
(mkdir /etc/portage/package.unmask; \
echo "sys-devel/gcc:7.5.0" >> /etc/portage/package.unmask/gcc) || \
echo "sys-devel/gcc:7.5.0" >> /etc/portage/package.unmask
# Compile time dependencies
emerge -n1 sys-devel/gcc:7.5.0 dev-lang/python:2.7 dev-lang/perl dev-lang/yasm
# Runtime time dependencies
emerge -n x11-libs/libXt app-arch/zip media-libs/freetype media-libs/fontconfig \
sys-libs/glibc dev-libs/libffi sys-apps/dbus dev-libs/dbus-glib x11-libs/gtk+:2 \
media-sound/pulseaudio net-wireless/wireless-tools
# Set the "x264" USE flag for media-video/ffmpeg and emerge it
(mkdir /etc/portage/package.use; \
echo "media-video/ffmpeg x264" >> /etc/portage/package.use/ffmpeg) || \
echo "media-video/ffmpeg x264" >> /etc/portage/package.use
emerge -nN ffmpeg
Add the following to the .mozconfig file you will create in Build Instructions:
export CC=gcc-7.5.0
export CXX=g++-7.5.0
mk_add_options PYTHON=/usr/bin/python2
Create a file called .mozconfig in the source folder you cloned or unpacked the source to. Make sure it contains at least the following for a close-to-official build:
.mozconfig file
# Clear this if not a 64bit build
_BUILD_64=1
# Set GTK Version to 2 or 3
_GTK_VERSION=3
# Standard build options for Pale Moon
ac_add_options --enable-application=palemoon
ac_add_options --enable-optimize="-O2 -w"
ac_add_options --enable-default-toolkit=cairo-gtk$_GTK_VERSION
ac_add_options --enable-jemalloc
ac_add_options --enable-strip
ac_add_options --enable-devtools
ac_add_options --enable-av1
ac_add_options --enable-jxl
ac_add_options --disable-webrtc
ac_add_options --disable-gamepad
ac_add_options --disable-tests
ac_add_options --disable-debug
ac_add_options --disable-necko-wifi
ac_add_options --disable-updater
ac_add_options --with-pthreads
# Please see https://www.palemoon.org/redist.shtml for restrictions when using the official branding.
ac_add_options --enable-official-branding
export MOZILLA_OFFICIAL=1
# Processor architecture specific build options
if [ -n "$_BUILD_64" ]; then
ac_add_options --x-libraries=/usr/lib64
else
ac_add_options --x-libraries=/usr/lib
fi
export MOZ_PKG_SPECIAL=gtk$_GTK_VERSION
Note: LESS IS MORE! There are some pre-made build configs out there that have a lot of options listed, often with insane resulting build configurations. Do not use those and stick to the instructions here.
Start the build:
./mach build
Be patient. Building could take a long time. Your PC will be fully occupied compiling and linking the browser (you can expect 100% CPU usage throughout and lots of memory use - provide ample cooling) and you should not be using it for anything else that is resource-intensive at this time. Especially memory-intensive applications should be avoided because it can cause issues with the linker (memory fragmentation) resulting in a very unstable browser.
After building is completed, you can take the resulting binaries for a test run in the object directory directly (see the on-screen instructions at the end of the build process) but it will not be complete yet. You need to strip and package the browser to integrate additional code, pack up the resource files, and have a ready-to-use browser. You do this by running:
./mach package
This will create a properly packaged xz compressed tarball in your object folder under the Pale Moon source folder. e.g. for Linux 64bit with GTK 3:
~/palemoon-source/obj-x86_64-pc-linux-gnu/dist/palemoon-{version}.linux-x86_64-gtk3.tar.xz
Site design and Branding © 2024 Moonchild Productions - All rights reserved
Any other content, brand names or logos are copyright or trademark to their respective owners.
Policies: Cookies - User Content
- Privacy.
The Pale Moon Developer Site is powered by Project Selene 1.2.1.