Makefile 连接静态库注意事项
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
Linux的静态库是以.a结尾的,要连接静态库有两种方法,一种是在编译命令最后直接加上库路径/库名称。
例如你的库在绝对目录/lib/libtest.a下面
你就可以这样来编译
$(CC) $(CFLAGS) $^ -o $@ /lib/libtest.a
另外一种方法是,你可以用-L制定库德路径,用-l指定库的名称
例如库的名称为libtest.a 那么就用-ltest
-ltest要放在-o的后面,不然不会起作用。
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献6条内容
所有评论(0)