gecko-dev/build/docs/tup.rst
Mike Shal feb1c8e5b7 Bug 1478976 - document the Tup backend; r=chmanchester
MozReview-Commit-ID: 3P1d5l0xOyk

Differential Revision: https://phabricator.services.mozilla.com/D2460

--HG--
extra : moz-landing-system : lando
2018-08-01 21:35:30 +00:00

107 lines
4.2 KiB
ReStructuredText

.. _tup:
===========
Tup Backend
===========
The Tup build backend is an alternative to the default Make backend. The `Tup
build system <http://gittup.org/tup/>`_ is designed for fast and correct
incremental builds. A top-level no-op build should be under 2 seconds, and
clobbers should rarely be required. It is currently only available for Linux
Desktop builds -- other platforms like Windows or OSX are planned for the
future.
As part of the mozbuild architecture, the Tup backend shares a significant
portion of frontend (developer-facing) code in the build system. When using the
Tup backend, ``mach build`` is still the entry point to run the build system,
and moz.build files are still used for the build description. Familiar parts of
the build system like configure and generating the build files (the
``Reticulating splines...`` step) are virtually identical in both backends. The
difference is that ``mach`` invokes Tup instead of Make under the hood to do
the actual work of determining what needs to be rebuilt. Tup is able to perform
this work more efficiently by loading only the parts of the DAG that are
required for an incremental build. Additionally, Tup instruments processes to
see what files are read from and written to in order to verify that
dependencies are correct.
For more detailed information on the rationale behind Tup, see the `Build
System Rules and Algorithms
<http://gittup.org/tup/build_system_rules_and_algorithms.pdf>`_ paper.
Installation
============
You'll need to install the Tup executable, as well as the nightly rust/cargo
toolchain::
cd ~/.mozbuild && mach artifact toolchain --from-build linux64-tup
rustup install nightly
rustup default nightly
Configuration
=============
Your mozconfig needs to describe how to find the executable if it's not in your
PATH, and enable the Tup backend::
export TUP=~/.mozbuild/tup/tup
ac_add_options --enable-build-backends=Tup
What Works
==========
You should expect a Linux desktop build to generate a working Firefox binary
from a ``mach build``, and be able to run test suites against it (eg:
mochitests, xpcshell, gtest). Top-level incremental builds should be fast
enough to use them during a regular compile/edit/test cycle. If you wish to
stop compilation partway through the build to more quickly iterate on a
particular file, you can expect ``mach build objdir/path/to/file.o`` to
correctly produce all inputs required to build file.o before compiling it. For
example, you don't have to run the build system in various subdirectories to
get generated headers built in the right order.
Currently Unsupported / Future Work
===================================
There are a number of features that you may use in the Make backend that are
currently unsupported for the Tup backend. We plan to add support for these in
the future according to developer demand and build team availability.
* sccache - This is currently under active development to support icecream-like
functionality, which likely impacts the same parts that would affect Tup's
dependency checking mechanisms. Note that icecream itself should work with
Tup.
* Incremental Rust compilation - see `bug 1468527 <https://bugzilla.mozilla.org/show_bug.cgi?id=1468527>`_
* Watchman integration - This will allow Tup to skip the initial ``Scanning
filesystem...`` step, saving 1-2 seconds of startup overhead.
* More platform support (Windows, OSX, etc.)
* Packaging in automation - This is still quite intertwined with Makefiles
* Tests in automation - Requires packaging
How to Contribute
=================
At the moment we're looking for early adopters who are developing on the Linux
desktop to try out the Tup backend, and share your experiences with the build
team (see `Contact`_).
* Are there particular issues or missing features that prevent you from using
the Tup backend at this time?
* Do you find that top-level incremental builds are fast enough to use for
every build invocation?
* Have you needed to perform a clobber build to fix an issue?
Contact
========
If you have any issues, feel free to file a bug blocking `buildtup
<https://bugzilla.mozilla.org/show_bug.cgi?id=827343>`_, or contact mshal or
chmanchester in #build on IRC.