---
title: "What is the difference between build and compile in terms of program execution?"  
description: "What is the difference between build and compile in terms of program execution?"  
author: "Mukul Goenka"  
published: 2021-11-09  
updated: 2021-11-09  
canonical: https://www.mindstick.com/forum/156814/what-is-the-difference-between-build-and-compile-in-terms-of-program-execution  
category: "c#"  
tags: ["c#", "java"]  
reading_time: 1 minute  

---

# What is the difference between build and compile in terms of program execution?

What is the [difference](https://www.mindstick.com/articles/157114/good-news-or-bad-news-and-the-difference-is) between build and [compile](https://www.mindstick.com/forum/2316/how-to-views-compile-in-mvc) in [terms](https://answers.mindstick.com/qa/31698/what-is-the-real-value-of-us-dollars-in-terms-of-indian-rupee) of [program](https://www.mindstick.com/blog/12337/scaling-up-your-mentorship-program) [execution](https://www.mindstick.com/blog/178/synchronous-and-asynchronous-command-execution-in-c-sharp-dot-net)?

## Replies

### Reply by Ravi Vishwakarma

## Build

- The term Build is a generic term, that describes the overall process which includes compiling. In other words, the Compiler compiles and linker links the object files created by the compiler into e.g. an executable application (or a library).
- A Building can (and usually does) involve several steps, such as pre-processing, compiling, linking, converting data files, running automated tests, packaging, etc.
- Building is done when preparing an application for release

## Compile

- It means that through the help of the compiler we convert the high-level language, i.e. source code into an object file.
- Compiling is part of a build process.
- Compiling is done at any time the compiler is involved in translating programming language code to machine code.


---

Original Source: https://www.mindstick.com/forum/156814/what-is-the-difference-between-build-and-compile-in-terms-of-program-execution

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
