diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:42:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:42:17 -0500 |
commit | da78a9e329e272dedb2400b79a3bdeebff387d47 (patch) | |
tree | e6ef8aa7c43556f55ddfe031a01cf0a8fa271bfe /files/ko/glossary/compile/index.html | |
parent | 1109132f09d75da9a28b649c7677bb6ce07c40c0 (diff) | |
download | translated-content-da78a9e329e272dedb2400b79a3bdeebff387d47.tar.gz translated-content-da78a9e329e272dedb2400b79a3bdeebff387d47.tar.bz2 translated-content-da78a9e329e272dedb2400b79a3bdeebff387d47.zip |
initial commit
Diffstat (limited to 'files/ko/glossary/compile/index.html')
-rw-r--r-- | files/ko/glossary/compile/index.html | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/files/ko/glossary/compile/index.html b/files/ko/glossary/compile/index.html new file mode 100644 index 0000000000..d7dbce7f34 --- /dev/null +++ b/files/ko/glossary/compile/index.html @@ -0,0 +1,28 @@ +--- +title: Compile +slug: Glossary/Compile +translation_of: Glossary/Compile +--- +<p>컴파일(Compile)은 주어진 {{Glossary("computer programming", "language")}}로 작성된 컴퓨터 프로그램을 다른 언어의 동등한 프로그램으로 변환하는 프로세스입니다. 컴파일러는이 작업을 실행하는 소프트웨어입니다. 때로는이 작업을 "조립(assembling)"또는 "빌드(build)"라고도 합니다. 이 작업들은 보통 컴파일과 같은 것(예를 들면 바이너리 형식으로 패키지를 만드는 일) 이상의 작업을 수행합니다 .</p> + +<p>일반적으로 컴파일러는 C 또는 {{Glossary("Java")}} 와 같은 고급 언어를 CPU가 이해할 수 있는, 즉 어셈블리어와 같은 기계 언어로 변환합니다. 유사한 수준의 언어 사이에서 번역하는 일부 컴파일러를 트랜스파일러 또는 크로스 컴파일러 라고 합니다. 예를 들어 TypeScript에서 {{Glossary("JavaScript")}}로 컴파일합니다. 그것들은 생산성 도구로 간주됩니다.</p> + +<p>대부분의 컴파일러는 선행(AOT) 또는 적기(JIT)로 작업한다. 프로그래머로서, 당신은 보통 커맨드 라인이나 당신의 {{Glossary("IDE")}}에서 AOT 컴파일러를 호출한다. 가장 유명한 'gcc'가 그 한 예다.</p> + +<p>JIT compilers are usually transparent to you, used for performance. For instance in the browser: Firefox' <a href="/en-US/docs/Mozilla/Projects/SpiderMonkey">SpiderMonkey</a> JavaScript Engine has a JIT built-in that will compile JavaScript in a website to machine code while you're viewing it so it runs faster. Projects like <a href="/en-US/docs/WebAssembly">WebAssembly</a> work on making this even better.</p> + +<h2 id="더_알아보기">더 알아보기</h2> + +<h3 id="General_knowledge">General knowledge</h3> + +<ul> + <li>Wikipedia의 {{Interwiki("wikipedia", "Compiler")}}</li> + <li>The <a href="https://gcc.gnu.org">GNU Compiler Collection (GCC)</a></li> +</ul> + +<h3 id="Learning_resources">Learning resources</h3> + +<ul> + <li><a href="https://medium.com/basecs/a-deeper-inspection-into-compilation-and-interpretation-d98952ebc842">Base CS Introduction on Compilers</a></li> + <li><a href="http://stackoverflow.com/a/1672/133203">A big list of learning material on StackOverflow</a></li> +</ul> |