# Linu_kernel **Repository Path**: Zhangfeilong/Linu_kernel ## Basic Information - **Project Name**: Linu_kernel - **Description**: No description available - **Primary Language**: C - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-07-14 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # gcc的一些命令: # 1.生成s 汇编文件      gcc -S exec.c -o libshare.s   # 2.生成obj 可重定位文件     gcc -c exec.c -o libshare.o   # 3.生成可执行程序文件   gcc exec.c -o libshare -m32     gcc exec.c -o libshare -static -m32   # 4.生成共享object文件主要是so库   gcc -shared dynaLib.c -o libdynaLib.so -m32 # 5.查看.a静态库文件内容  ar -t *.a