Published 2020. 5. 30. 16:05

Build usually means the entire process of getting a system ready for use.
빌드는 보통 사용할 준비가 된 시스템으로 만드는 프로세스 전체를 뜻한다.

Compile is usually an action on a single file or group of files. The output of a compile step might be an executable or an object file or even a library of some sort.
컴파일은 한 파일 또는 파일 그룹을 대상으로 행해진다. 컴파일의 산출물은 보통 실행파일이나 오브젝트 파일 또는 어떤 라이브러리가 될 수도 있다.

Sometimes there is another step after build, to prepare a system for distribution.
때때로 배포를 위한 시스템을 준비하기 위해 빌드 이후에 다른 단계가 있기도 하다.

 

컴파일 (compile)

컴파일은 클래스 수준의 바이너리 파일을 만드는 작업

빌드 (build)

빌드는 시스템 수준에서 바이너리 파일을 만드는 작업

패키징 (packaging)

패키징은 고객에게 전달할 수 있는 실행 가능한 시스템을 만들기 위한 작업 

복사했습니다!