Build

In software development, "build" is used as both a verb and a noun. The verb refers to the build process, or steps, required to create an application. The noun describes a specific version of a program.

Build (verb)

Creating an executable software program is often described as "building" an app because of all the steps involved. These steps are collectively known as the "build process," which includes the following:

  1. Checking source code for syntax errors
  2. Compiling source code into machine code
  3. Linking libraries and other resources, such as images and media files, to the app
  4. Generating a runnable application or executable file

Programmers typically use a software development application, such as an IDE, to automate the build process. Many IDEs include a "Build" or "Build and Run" command that performs all the build steps and outputs an executable application.

Build (noun)

Each version of a software program is called a build. Some builds may be internal (not released to the public), while others are official releases. For example, a developer may test and refine several internal builds before releasing a stable build to the public.

Since each build is unique, the build number or ID must also be unique. Some developers append the build ID to the public version, while others display it as a separate value. Many applications, especially smaller ones, do not include a public build number.

The build ID is typically the fourth number (after the third dot) when appended to the public version. Standard software versioning uses the following convention:

Major version . minor version . patch . build

For example, app version 4.2.17.2895 can be broken down as:

  • 4 - Major version
  • 2 - Minor version
  • 17 - Patch
  • 2895 - Build

NOTE: In some cases, developers release different builds between automatic software updates. For example, a developer may publish a new build after making a minor update, such as fixing a typo. But the update is not significant enough to push out the latest version to all users. Instead, a developer may wait until the next minor version or patch release to notify users of the update.

Updated October 26, 2021 by Per C.

quizTest Your Knowledge

Which acronym refers to a type of graphical user interface (GUI)?

A
WIMP
0%
B
WAMP
0%
C
LAMP
0%
D
MAMP
0%
Correct! Incorrect!     View the WIMP definition.
More Quizzes →

The Tech Terms Computer Dictionary

The definition of Build on this page is an original definition written by the TechTerms.com team. If you would like to reference this page or cite this definition, please use the green citation links above.

The goal of TechTerms.com is to explain computer terminology in a way that is easy to understand. We strive for simplicity and accuracy with every definition we publish. If you have feedback about this definition or would like to suggest a new technical term, please contact us.

Sign up for the free TechTerms Newsletter

How often would you like to receive an email?

You can unsubscribe or change your frequency setting at any time using the links available in each email.

Questions? Please contact us.