목록Computer Science/System programming (1)
새발블로그
[System Programming] A tour on Computer System
compliation system unix > gxx -o hello hello.c gcc: 소스코드를 실행코드로 바꿀 수 있는 utility Preprocessing : Source program(text) -> Modified source program(text) ex) hello.c -> hello.i Compiliation : Assembly program(text) ex) hello.i -> hello.s Assembly : Relocatable object programs(binary) ex) hello.s -> hello.o Linking : Executable object programs(binary) ex) hello.o -> hello 이 때, 다른 object 도 결합 Running ..
Computer Science/System programming
2024. 1. 3. 23:11