功能描述:根据文件描述词来操作文件的特性。 #include <unistd.h> #include <fcntl.h> int fcntl(int fd, int cmd); int fcntl(int fd, int cmd, long arg); int fcntl(int fd, int cmd, struc
Linux中有关编译链接要是用的库扫描路径,与有关环境变量 静态库链接时搜索路径顺序: 1.ld会去找GCC命令中的参数-L 2.再找gcc的环境变量LIBRARY_PATH 3.再找内定目录 /lib /usr/lib /usr/local/lib 这是当初compile gcc时写在程序内的 动态链接时、执行时搜索路径顺序: 1.编译目标代码时指定的
一、静态库 1、创建静态库 (1)写个静态库函数代码 //static_lib.c int add(int a,int b) { return a + b; } int sub(int a,int b) { return a - b; } int mul(int a,int b) { &n
CC = xxx-gcc CFLAGS += xxx &nbs
Copyright © 2005-2024 51CTO.COM 版权所有 京ICP证060544号