컴퓨터 공부 309

[스터디] Beginning Linux 4e - 2. 쉘 프로그래밍

ldd : which shared libraries are required by a program. shell a program that act as the interface between you and the Linux system, enabling you to enter commandds for the operating system to execute. perform some relatively simple task organize process control, so that commands run in a predetermined sequence dependent on the successful completion of each stage. execute commands call Linux uti..

[4월 21일 3교시]C Compiler & Library Archive

진도표 : 554~565(UNIX System Programming)   GCC 참고 사이트 http:// gcc.gnu.org   .c -> 전처리 -> .i -> assemble -> .s  -> compile -> .o -> link -> a.out   컴파일과정 전처리 옵션 -E(cpp) gcc -E hello.c > hello.i assemble 옵션 -S compile  옵션 ? (as) gcc -c hello.s link 옵션 ? (ld)   라이브러리 바인딩 동적(윈도우즈의 dll)  - 공유라이..