.. Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. .. include:: ../../../common.defs .. include:: txnbox_common.defs .. highlight:: text .. default-domain:: cpp .. _building: *************** Building *************** |TxB| building is based on `SCons `__ and `Parts `__. As a plugin, |TxB| also requires an instance of `Traffic Server `__, or at least the plugin API header files. Other dependencies * `pcre2 `__ Generally ``sudo dnf install pcre2-devel`` or ``sudo yum install pcre2-devel``. * Scons/Parts As mentioned above, |TxB| is built using the Scons build tool. This is distributed as a Python package. A root level ``Pipenv`` is provided with which a Python virtual environment containing the required Scons dependencies can be created. Simply run ``pipenv install`` to create the environment followed by ``pipenv shell`` to enter it. Alternatively you can install the required scons-parts package into your PATH's Python 3 environment via :: python3 -m pip install --user scons-parts It is important to use `Python 3 `__ - no attempt has been made for Python 2 compabitility. It may be necessary to edit the "scons" script for this reason. This should be "~/.local/bin/scons". If scons or parts doesn't seem to be found, make sure the first line in that file has "python3" and not just "python". To build |TxB|, first build and install Traffic Server. When configuring Traffic Server, specify that its YAML headers should be exported via the ``--enable-yaml-headers`` configuration option. Once Traffic Server is built, build |TxB| using the following command :: scons txn_box --with-trafficserver= where ```` is the path to a Traffic Server install. In general this will be the same path as used for the ``prefix`` configuration option in Traffic Server.