1 / 18
Compiler Seminar
180 likes | 369 Vues
Compiler Seminar. Robotics 11 th 성 용 재. Compiler ??. 인간이 이 해 할 수 있는 언어 (C, C++ 등 ) 로 짜여진 코드를 CPU 가 이해할 수 있는 기계어로 번역하는 것. printf (“Hello Robotics World”); Compile 0101010101…. Cross Compiler ??.
Télécharger la présentation
Compiler Seminar
An Image/Link below is provided (as is) to download presentation
Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author.
Content is provided to you AS IS for your information and personal use only.
Download presentation by click this link.
While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server.
During download, if you can't get a presentation, the file might be deleted by the publisher.
E N D
Presentation Transcript
Compiler Seminar Robotics 11th 성 용 재
인간이 이해 할 수 있는 언어(C, C++ 등)로 짜여진 코드를 CPU가 이해할 수 있는 기계어로 번역하는 것
printf(“Hello Robotics World”); Compile 0101010101…..
Host 컴퓨터와 Target시스템에서 사용하는 프로세서(CPU) 가 다른 경우Host 컴퓨터에서 Target 시스템에서 실행될 수 있는 프로그램 만들어 주는 것
IDE (Integrated Development Environment) Editor + Compiler + Debugger
Compile Process (in Linux) Hello.c Source Pre - Processor Hello.i C Compiler Linker Hello.o Assembler Hello.s Program
Linker - Program Hello.oPrintf.o Hello Linker
More Related