dpkg-architecture โ set and determine the architecture for package building
| Use Case | Command | Description |
|---|---|---|
| ๐ Print all environment variables | dpkg-architecture -l | Print build/host/target architecture variables |
| ๐ Check equality of architecture | dpkg-architecture -e <arch> | Check if current host arch equals given arch |
| ๐ Check identity with wildcard | dpkg-architecture -i <wildcard> | Check if host arch matches wildcard |
| ๐ Query single variable | dpkg-architecture -q <var> | Print value of a single variable |
| ๐ Export environment | dpkg-architecture -s | Print shell export commands |
| ๐ Unset environment | dpkg-architecture -u | Print shell commands to unset all variables |
| โ๏ธ Execute command with environment | dpkg-architecture -c "command" | Run command with architecture variables set |
| ๐ List known architectures | dpkg-architecture -L | List valid architecture names, optionally filtered |
| ๐๏ธ Set host architecture | dpkg-architecture -a <arch> | Set host Debian architecture |
| ๐๏ธ Set host GNU type | dpkg-architecture -t <type> | Set host GNU system type |
| ๐ Force override | dpkg-architecture -f | Ignore existing environment variables |
dpkg-architecture [option...] [command]
dpkg-architecture provides a facility to determine and set the build and host architecture for package building.
The build architecture is always determined by either the DEB_BUILD_ARCH variable if set (and --force not being specified) or by an external call to dpkg(1), and cannot be set at the command line.
You can specify the host architecture by providing one or both of the options --host-arch and --host-type, otherwise the DEB_HOST_ARCH variable is used if set (and --force not being specified). The default is determined by an external call to gcc(1), or the same as the build architecture if CC or gcc are both not available. One out of --host-arch and --host-type is sufficient, the value of the other will be set to a usable default. Indeed, it is often better to only specify one, because dpkg-architecture will warn you if your choice does not match the default.
The following variables are read from the environment (unless --force has been specified) and set by dpkg-architecture (see the TERMS section for a description of the naming scheme):
DEB_BUILD_ARCH๐๏ธ The Debian architecture of the build machine. DEB_BUILD_ARCH_ABI๐๏ธ The Debian ABI name of the build machine (since dpkg 1.18.11). DEB_BUILD_ARCH_LIBC๐๏ธ The Debian libc name of the build machine (since dpkg 1.18.11). DEB_BUILD_ARCH_OS๐๏ธ The Debian system name of the build machine (since dpkg 1.13.2). DEB_BUILD_ARCH_CPU๐๏ธ The Debian CPU name of the build machine (since dpkg 1.13.2). DEB_BUILD_ARCH_BITS๐๏ธ The pointer size of the build machine (in bits; since dpkg 1.15.4). DEB_BUILD_ARCH_ENDIAN๐๏ธ The endianness of the build machine (little / big; since dpkg 1.15.4). DEB_BUILD_GNU_CPU๐๏ธ The GNU CPU part of DEB_BUILD_GNU_TYPE. DEB_BUILD_GNU_SYSTEM๐๏ธ The GNU system part of DEB_BUILD_GNU_TYPE. DEB_BUILD_GNU_TYPE๐๏ธ The GNU system type of the build machine. DEB_BUILD_MULTIARCH๐๏ธ The clarified GNU system type of the build machine, used for filesystem paths (since dpkg 1.16.0). DEB_HOST_ARCH๐ The Debian architecture of the host machine. DEB_HOST_ARCH_ABI๐ The Debian ABI name of the host machine (since dpkg 1.18.11). DEB_HOST_ARCH_LIBC๐ The Debian libc name of the host machine (since dpkg 1.18.11). DEB_HOST_ARCH_OS๐ The Debian system name of the host machine (since dpkg 1.13.2). DEB_HOST_ARCH_CPU๐ The Debian CPU name of the host machine (since dpkg 1.13.2). DEB_HOST_ARCH_BITS๐ The pointer size of the host machine (in bits; since dpkg 1.15.4). DEB_HOST_ARCH_ENDIAN๐ The endianness of the host machine (little / big; since dpkg 1.15.4). DEB_HOST_GNU_CPU๐ The GNU CPU part of DEB_HOST_GNU_TYPE. DEB_HOST_GNU_SYSTEM๐ The GNU system part of DEB_HOST_GNU_TYPE. DEB_HOST_GNU_TYPE๐ The GNU system type of the host machine. DEB_HOST_MULTIARCH๐ The clarified GNU system type of the host machine, used for filesystem paths (since dpkg 1.16.0). DEB_TARGET_ARCH๐ฏ The Debian architecture of the target machine (since dpkg 1.17.14). DEB_TARGET_ARCH_ABI๐ฏ The Debian ABI name of the target machine (since dpkg 1.18.11). DEB_TARGET_ARCH_LIBC๐ฏ The Debian libc name of the target machine (since dpkg 1.18.11). DEB_TARGET_ARCH_OS๐ฏ The Debian system name of the target machine (since dpkg 1.17.14). DEB_TARGET_ARCH_CPU๐ฏ The Debian CPU name of the target machine (since dpkg 1.17.14). DEB_TARGET_ARCH_BITS๐ฏ The pointer size of the target machine (in bits; since dpkg 1.17.14). DEB_TARGET_ARCH_ENDIAN๐ฏ The endianness of the target machine (little / big; since dpkg 1.17.14). DEB_TARGET_GNU_CPU๐ฏ The GNU CPU part of DEB_TARGET_GNU_TYPE (since dpkg 1.17.14). DEB_TARGET_GNU_SYSTEM๐ฏ The GNU system part of DEB_TARGET_GNU_TYPE (since dpkg 1.17.14). DEB_TARGET_GNU_TYPE๐ฏ The GNU system type of the target machine (since dpkg 1.17.14). DEB_TARGET_MULTIARCH๐ฏ The clarified GNU system type of the target machine, used for filesystem paths (since dpkg 1.17.14).All these files have to be present for dpkg-architecture to work. Their location can be overridden at runtime with the environment variable DPKG_DATADIR. These tables contain a format Version pseudo-field on their first line to mark their format, so that parsers can check if they understand it, such as "# Version=1.0".
dpkg-buildpackage accepts the -a option and passes it to dpkg-architecture. Other examples:
CC=i386-gnu-gcc dpkg-architecture -c debian/rules build
eval $(dpkg-architecture -u)
Check if the current or specified host architecture is equal to an architecture:
dpkg-architecture -elinux-alpha
dpkg-architecture -amips -elinux-mips
Check if the current or specified host architecture is a Linux system:
dpkg-architecture -ilinux-any
dpkg-architecture -ai386 -ilinux-any
The environment variables set by dpkg-architecture are passed to debian/rules as make variables (see make documentation). However, you should not rely on them, as this breaks manual invocation of the script. Instead, you should always initialize them using dpkg-architecture with the -q option. Here are some examples, which also show how you can improve the cross compilation support in your package:
Retrieving the GNU system type and forwarding it to ./configure:
DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
[...]
ifeq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE))
confflags += --build=$(DEB_HOST_GNU_TYPE)
else
confflags += --build=$(DEB_BUILD_GNU_TYPE) \
--host=$(DEB_HOST_GNU_TYPE)
endif
[...]
./configure $(confflags)
Doing something only for a specific architecture:
DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
ifeq ($(DEB_HOST_ARCH),alpha)
[...]
endif
or if you only need to check the CPU or OS type, use the DEB_HOST_ARCH_CPU or DEB_HOST_ARCH_OS variables.
Note that you can also rely on an external Makefile snippet to properly set all the variables that dpkg-architecture can provide:
include /usr/share/dpkg/architecture.mk
ifeq ($(DEB_HOST_ARCH),alpha)
[...]
endif
In any case, you should never use dpkg --print-architecture to get architecture information during a package build.
All long command and option names available only since dpkg 1.17.17.
Generated by phpman v4.9.26-1-g511901d · Markdown · JSON · MCP Author: Che Dong Under GNU General Public License
2026-07-31 04:12 @216.73.217.152
CrawledBy Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
Enhanced by LLM: deepseek-v4-flash / taotoken.net / www.chedong.com - original format