Environment variablesยถ
Tip
Avoid using external environment variables for a project to configure package options such as compiler flags or interpreters. Managing these options inside a releng-tool project configuration or package definitions can improve configuration management.
Commonยถ
When configuration, package definitions or various scripts are invoked by releng-tool, the following environment variables are available:
BUILD_DIR
ยถ
Changed in version 2.2: Variable is path-like in a script environment.
The build directory. By default, this will be a folder build
found inside
the configured output directory. For example:
<root-dir>/output/build
CACHE_DIR
ยถ
Changed in version 2.2: Variable is path-like in a script environment.
The cache directory. By default, this will be a folder cache
found inside
the configured root directory. For example:
<root-dir>/cache
DL_DIR
ยถ
Changed in version 2.2: Variable is path-like in a script environment.
The download directory. By default, this will be a folder dl
found inside
the configured root directory. For example:
<root-dir>/dl
HOST_BIN_DIR
ยถ
Added in version 0.14.
Changed in version 2.2: Variable is path-like in a script environment.
The host directory's prefixed bin directory. For example:
<root-dir>/output/host/usr/bin
HOST_DIR
ยถ
Changed in version 2.2: Variable is path-like in a script environment.
The host directory. By default, this will be a folder host
found inside
the configured output directory. For example:
<root-dir>/output/host
HOST_INCLUDE_DIR
ยถ
Added in version 0.12.
Changed in version 2.2: Variable is path-like in a script environment.
The host directory's prefixed include directory. An example include directory may be as follows:
<root-dir>/output/host/usr/include
HOST_LIB_DIR
ยถ
Added in version 0.12.
Changed in version 2.2: Variable is path-like in a script environment.
The host directory's prefixed library directory. An example library directory may be as follows:
<root-dir>/output/host/usr/lib
IMAGES_DIR
ยถ
Changed in version 2.2: Variable is path-like in a script environment.
The images directory. By default, this will be a folder images
found inside
the configured output directory. For example:
<root-dir>/output/images
LICENSE_DIR
ยถ
Changed in version 2.2: Variable is path-like in a script environment.
The licenses directory. By default, this will be a folder licenses
found
inside the configured output directory. For example:
<root-dir>/output/licenses
See also licenses.
NJOBS
ยถ
Number of calculated jobs to allow at a given time. Unless explicitly set
by a system builder on the command line, the calculated number of jobs
should be equal to the number of physical cores on the host. When building
a specific package and the package overrides the number of jobs to use,
the package-defined count will be used instead. This
configuration will always be a value of at least one (1
).
NJOBSCONF
ยถ
Number of jobs to allow at a given time. Unlike NJOBS
,
NJOBSCONF
provides the requested configured number of jobs to use. The
value may be set to zero (0
) to indicate an automatic detection of jobs
to use. This can be useful for tools which have their own automatic job
count implementation and do not want to rely on the value defined by
NJOBS
. When building a specific package and the package
overrides the number of jobs to use, the
package-defined count will be used instead.
OUTPUT_DIR
ยถ
Changed in version 2.2: Variable is path-like in a script environment.
The output directory. By default, this will be a folder output
found inside
the configured root directory. For example:
<root-dir>/output
PKG_BUILD_BASE_DIR
ยถ
Added in version 0.12.
The directory for a specific package's base directory for buildable content.
In most cases, this value will be the same as
PKG_BUILD_DIR
. However, if
LIBFOO_BUILD_SUBDIR
is configured,
PKG_BUILD_DIR
will also include the configured
sub-directory. The value of LIBFOO_BUILD_SUBDIR
does not adjust the value of PKG_BUILD_BASE_DIR
.
See also PKG_BUILD_DIR
.
PKG_BUILD_DIR
ยถ
Changed in version 2.2: Variable is path-like in a script environment.
The directory for a specific package's buildable content.
See also PKG_BUILD_BASE_DIR
and
PKG_BUILD_OUTPUT_DIR
.
PKG_BUILD_OUTPUT_DIR
ยถ
Changed in version 2.2: Variable is path-like in a script environment.
The directory for where a package's build output will be stored.
See also PKG_BUILD_DIR
.
PKG_CACHE_DIR
ยถ
Changed in version 2.2: Variable is path-like in a script environment.
The location of the cache directory for a package. If a package defines a fetch from a repository which can be locally cached, this cache directory represents the location where the local cache of content will be held. For example, if a provide defines a Git-based site, a local cache of the Git repository will be stored in this location. Typically, packages should not need to operate on the cache directory except for advanced cases.
PKG_CACHE_FILE
ยถ
Changed in version 2.2: Variable is path-like in a script environment.
The location of the cache file for a package. If a package defines a fetch of an archive from a remote source, after the fetch stage is completed, the archive can be found in this location.
For example, if a package defines a site https://www.example.com/test.tgz
,
the resulting cache file may be:
<root>/output/dl/test-1.0.tgz
PKG_DEFDIR
ยถ
Changed in version 2.2: Variable is path-like in a script environment.
The package's definition directory.
For example, for a package test
, the definition directory would be:
<root>/package/test
PKG_DEVMODE
ยถ
Added in version 0.13.
Whether the package is configured for development mode. If a package is
configured for development mode, the environment variable will be set to a
value of one (i.e. PKG_DEVMODE=1
).
See also development mode.
PKG_INTERNAL
ยถ
Whether or not the package is considered "internal". If internal, the
environment variable will be set to a value of one (i.e. PKG_INTERNAL=1
).
See also internal and external packages.
PKG_LOCALSRCS
ยถ
Added in version 0.13.
Whether the package is configured for local-sources mode. If a package is
configured for local-sources, the environment variable will be set to a
value of one (i.e. PKG_LOCALSRCS=1
).
See also local-sources mode.
PKG_NAME
ยถ
The name of the package.
PKG_REVISION
ยถ
The site revision of the package.
See also LIBFOO_REVISION
.
PKG_SITE
ยถ
The site of the package.
See also LIBFOO_SITE
.
PKG_VERSION
ยถ
The version of the package.
See also LIBFOO_VERSION
.
PREFIX
ยถ
The sysroot prefix for the package. By default, this value is configured
to /usr
; with the exception of Windows builds where this value is empty
by default.
See also LIBFOO_PREFIX
and
sysroot_prefix
.
PREFIXED_HOST_DIR
ยถ
Added in version 0.12.
Changed in version 2.2: Variable is path-like in a script environment.
The host directory with the prefix applied. An example prefixed directory may be as follows:
<root-dir>/output/host/usr
PREFIXED_STAGING_DIR
ยถ
Added in version 0.12.
Changed in version 2.2: Variable is path-like in a script environment.
The staging area directory with the prefix applied. An example prefixed directory may be as follows:
<root-dir>/output/staging/usr
PREFIXED_TARGET_DIR
ยถ
Added in version 0.12.
Changed in version 2.2: Variable is path-like in a script environment.
The target area directory with the prefix applied. An example prefixed directory may be as follows:
<root-dir>/output/target/usr
RELENG_CLEAN
ยถ
Added in version 0.7.
Flag set if performing a clean request.
RELENG_DEBUG
ยถ
Added in version 0.7.
Flag set if debug-related information should be shown.
RELENG_DEVMODE
ยถ
Added in version 0.2.
The development mode or flag set if in development mode.
RELENG_DISTCLEAN
ยถ
Added in version 0.7.
Flag set if performing an extreme pristine clean request.
RELENG_EXEC
ยถ
Added in version 1.4.
Flag set if performing a <pkg>-exec
request.
RELENG_FORCE
ยถ
Added in version 0.11.
Flag set if performing a forced request from the command line.
RELENG_LOCALSRCS
ยถ
Added in version 0.2.
Flag set if in local-sources mode.
RELENG_MRPROPER
ยถ
Flag set if performing a pristine clean request.
RELENG_REBUILD
ยถ
Flag set if performing a re-build request.
RELENG_RECONFIGURE
ยถ
Flag set if performing a re-configuration request.
RELENG_REINSTALL
ยถ
Flag set if performing a re-install request.
RELENG_SCRIPT
ยถ
Added in version 1.0.
Changed in version 2.2: Variable is path-like in a script environment.
The path of the script currently being executed.
RELENG_SCRIPT_DIR
ยถ
Added in version 1.0.
Changed in version 2.2: Variable is path-like in a script environment.
The path of the directory holding the script currently being executed.
RELENG_TARGET_PKG
ยถ
Added in version 0.13.
The name of the target package (if any) provided by the command line.
RELENG_VERBOSE
ยถ
Added in version 0.7.
Flag set if verbose-related information should be shown.
RELENG_VERSION
ยถ
Added in version 0.7.
The version of releng-tool.
ROOT_DIR
ยถ
Changed in version 2.2: Variable is path-like in a script environment.
The root directory.
STAGING_BIN_DIR
ยถ
Added in version 0.14.
Changed in version 2.2: Variable is path-like in a script environment.
The staging area directory's prefixed bin directory. An example binary directory may be as follows:
<root-dir>/output/staging/usr/bin
STAGING_DIR
ยถ
Changed in version 2.2: Variable is path-like in a script environment.
The staging area directory. By default, this will be a folder staging
found
inside the configured output directory. For example:
<root-dir>/output/staging
STAGING_INCLUDE_DIR
ยถ
Added in version 0.12.
Changed in version 2.2: Variable is path-like in a script environment.
The staging area directory's prefixed include directory. An example include directory may be as follows:
<root-dir>/output/staging/usr/include
STAGING_LIB_DIR
ยถ
Added in version 0.12.
Changed in version 2.2: Variable is path-like in a script environment.
The staging area directory's prefixed library directory. An example library directory may be as follows:
<root-dir>/output/staging/usr/lib
SYMBOLS_DIR
ยถ
Changed in version 2.2: Variable is path-like in a script environment.
The symbols area directory. By default, this will be a folder symbols
found
inside the configured output directory. For example:
<root-dir>/output/symbols
TARGET_BIN_DIR
ยถ
Added in version 0.14.
Changed in version 2.2: Variable is path-like in a script environment.
The target area directory's prefixed bin directory. An example binary directory may be as follows:
<root-dir>/output/target/usr/bin
TARGET_DIR
ยถ
Changed in version 2.2: Variable is path-like in a script environment.
The target area directory. By default, this will be a folder target
found
inside the configured output directory. For example:
<root-dir>/output/target
TARGET_INCLUDE_DIR
ยถ
Added in version 0.12.
Changed in version 2.2: Variable is path-like in a script environment.
The target area directory's prefixed include directory. An example include directory may be as follows:
<root-dir>/output/target/usr/include
TARGET_LIB_DIR
ยถ
Added in version 0.12.
Changed in version 2.2: Variable is path-like in a script environment.
The target area directory's prefixed library directory. An example library directory may be as follows:
<root-dir>/output/target/usr/lib
Package-specific variablesยถ
Package-specific environment variables are also available if another package or
script needs to rely on the (generated) configuration of another package. For
example, if a package LIBFOO
existed with a package definition:
LIBFOO_VERSION = '1.0.0'
The environment variable LIBFOO_VERSION
with a value of 1.0.0
can be used
in other configurations and script files. The following package-specific
environment variables are available for use, where <PKG>
translates to a
releng-tool's determined package key:
<PKG>_BUILD_DIR
ยถ
Changed in version 2.2: Variable is path-like in a script environment.
The directory for a defined package's buildable content.
For most packages, this path will match the value specified in
<PKG>_BUILD_OUTPUT_DIR
. For package types that do not support in-tree
building (e.g. CMake), this path may be the parent of the value specified
in <PKG>_BUILD_OUTPUT_DIR
:
โโโ my-releng-tool-project/
โโโ output/
โ โโโ build/
โ โโโ libfoo-1.0.0 <---- LIBFOO_BUILD_DIR
โ โโโ releng-output <---- LIBFOO_BUILD_OUTPUT_DIR
โ โโโ ...
โโโ package/
โ โโโ libfoo/
โ โโโ libfoo.rt
โโโ releng-tool.rt
...
For cases where a package uses local sources, this path may change to point to the specified local source path. For example, when configured for local-sources mode, the build directory may exist out of the root directory:
โโโ libfoo/ <---- LIBFOO_BUILD_DIR
โ โโโ ...
โโโ my-releng-tool-project/
โโโ output/
โ โโโ build/
โ โโโ libfoo-1.0.0 <---- LIBFOO_BUILD_OUTPUT_DIR
โ โโโ ...
โโโ package/
โ โโโ libfoo/
โ โโโ libfoo.rt
โโโ releng-tool.rt
...
Or, when using a local
VCS type, the path may be set for a folder inside
the package's definition directory:
โโโ my-releng-tool-project/
โโโ output/
โ โโโ build/
โ โโโ libfoo-1.0.0 <---- LIBFOO_BUILD_OUTPUT_DIR
โ โโโ ...
โโโ package/
โ โโโ libfoo/
โ โโโ local/ <---- LIBFOO_BUILD_DIR
โ โ โโโ ...
โ โโโ libfoo.rt
โโโ releng-tool.rt
...
<PKG>_BUILD_OUTPUT_DIR
ยถ
Changed in version 2.2: Variable is path-like in a script environment.
The directory for where a defined package's build output will be stored.
This location is a path is a folder inside the project's output/build
directory. The name is typically a combination of the package's name and
version (e.g. libfoo-1.0.0
):
โโโ my-releng-tool-project/
โโโ output/
โ โโโ build/
โ โโโ libfoo-1.0.0 <---- LIBFOO_BUILD_OUTPUT_DIR
โ โโโ ...
โโโ package/
โ โโโ libfoo/
โ โโโ libfoo.rt
โโโ releng-tool.rt
...
However, if no version is specified for a package, the folder name may
just be libfoo
:
โโโ my-releng-tool-project/
โโโ output/
โ โโโ build/
โ โโโ libfoo <---- LIBFOO_BUILD_OUTPUT_DIR
โ โโโ ...
โโโ package/
โ โโโ libfoo/
โ โโโ libfoo.rt
โโโ releng-tool.rt
...
Note for some package types, the build output directory may be changed to
have an additional path (e.g. output/build/libfoo-1.0.0/releng-output
)
for package types like CMake. For example:
โโโ my-releng-tool-project/
โโโ output/
โ โโโ build/
โ โโโ libfoo-1.0.0
โ โโโ releng-output <---- LIBFOO_BUILD_OUTPUT_DIR
โ โโโ ...
โโโ package/
โ โโโ libfoo/
โ โโโ libfoo.rt
โโโ releng-tool.rt
...
<PKG>_DEFDIR
ยถ
Changed in version 2.2: Variable is path-like in a script environment.
The directory where a defined package's definition is stored.
For example, if a package libfoo
exists, the LIBFOO_DEFDIR
environment
variable will contain a directory path matching the path seen below:
โโโ my-releng-tool-project/
โโโ package/
โ โโโ libfoo/ <---- LIBFOO_DEFDIR
โ โโโ libfoo.rt
โโโ releng-tool.rt
...
<PKG>_NAME
ยถ
The name of the package.
For example, if a package libfoo
exists, the LIBFOO_NAME
environment
variable will have a value of libfoo
.
<PKG>_REVISION
ยถ
The revision of a defined package. If a package does not define a revision, the value used will match the version value (if set). If no version value exists, this variable may be empty.
<PKG>_VERSION
ยถ
The version of a defined package. If a package does not define a version, the value used will match the revision value (if set). If no revision value exists, this variable may be empty.
Script-only variablesยถ
A series a script-only variables are also available at certain stages of releng-tool.
RELENG_GENERATED_LICENSES
ยถ
Added in version 1.3.
Defines a list of generated license files at the end of package processing that is available for post-processing actions to use.
RELENG_GENERATED_SBOMS
ยถ
Added in version 1.3.
Defines a list of generated software build of materials (SBOM) files at the end of package processing that is available for post-processing actions to use.
Other variablesยถ
releng-tool also accepts environment variables for configuring specific features of the releng-tool process. The following environment variables are accepted:
RELENG_ASSETS_DIR=<dir>
ยถ
Added in version 0.10.
The asset directory to use. The asset directory is the container directory
to use for both cache and download content. By default, no asset directory
is configured. If a user does not override an asset directory using the
--assets-dir
argument, the RELENG_ASSETS_DIR
can be
used as the container directory override for both cache and download
content.
RELENG_CACHE_DIR=<dir>
ยถ
Added in version 0.10.
The cache directory to use. By default, the cache directory used is configured
to <root>/cache
. If a user does not override a cache directory using the
--cache-dir
argument, the RELENG_CACHE_DIR
option can
be used to override this location.
RELENG_DL_DIR=<dir>
ยถ
Added in version 0.10.
The download directory to use. By default, the download directory used is
configured to <root>/dl
. If a user does not override a download directory
using the --dl-dir
argument, the RELENG_DL_DIR
option
can be used to override this location.
RELENG_GLOBAL_OUTPUT_CONTAINER_DIR=<dir>
ยถ
Note
This environment variable is always ignored when either the
--out-dir
argument or
RELENG_OUTPUT_DIR
environment variable is used.
Added in version 1.1.
Configures a "global" container directory used to hold the output contents
of releng-tool projects. Projects will typically generate output contents
inside a project's <root-dir>/output
directory. This can be overridden
using the --out-dir
argument or
RELENG_OUTPUT_DIR
environment variable, if a user
wishes to generate a build on a different path/partition. While these
overrides can help, users managing multiple releng-tool projects will need
to tailor a specific output directory value for each project they wish to
build. This may be less than ideal if projects typically build in an
output folder in a common directory. To help avoid this, this environment
variable can be used.
When configuring this option, the default output folder for projects will be set to the provided container directory along with a project's root directory name:
$RELENG_GLOBAL_OUTPUT_CONTAINER_DIR/<root-directory-name>
This allows a user to build multiple releng-tool projects with output data placed inside a common directory path without needing to explicitly configure a specific output directory each project's build.
For example, if a user stores multiple projects inside a ~/projects/
path
and configures this option to the path /mnt/extern-disk
:
export RELENG_GLOBAL_OUTPUT_CONTAINER_DIR=/mnt/extern-disk
The following folder structure should be expected:
โโโ usr/
โ โโโ home/
โ โโโ myuser/
โ โโโ projects/
โ โโโ my-project-a/
โ โ โโโ ...
โ โ โโโ releng-tool.rt
โ โโโ my-project-b/
โ โโโ ...
โ โโโ releng-tool.rt
โโโ mnt/
โโโ extern-disk/
โโโ my-project-a/
โ โโโ ...
โโโ my-project-b/
โโโ ...
RELENG_IGNORE_RUNNING_AS_ROOT=1
ยถ
Added in version 0.10.
Suppress the warning generated when running releng-tool with an elevated user.
RELENG_IGNORE_UNKNOWN_ARGS=1
ยถ
Added in version 1.3.
Suppress the warning/error generated when running releng-tool with unknown arguments.
See also the --relaxed-args
argument.
RELENG_OUTPUT_DIR=<dir>
ยถ
Added in version 1.1.
The output directory to use. By default, the output directory used is
configured to <root>/output
. If a user does not override an output
directory using the --out-dir
argument, the
RELENG_OUTPUT_DIR
option can be used to override this location.
See also
RELENG_GLOBAL_OUTPUT_CONTAINER_DIR
.
Tool overridesยถ
Environment variables can be used to help override external tool invoked by the
releng-tool process. For example, when invoking CMake-based projects, the tool
cmake
will be invoked. However, if a builder is running on CentOS and CMake
v3.x is desired, the tool cmake3
needs to be invoked instead. To configure
this, an environment variable can be set to switch which tool to invoke.
Consider the following example:
$ export RELENG_CMAKE=cmake3
$ releng-tool
[cmake3 will be used for cmake projects]