pkg-config 磁盘位置
Posted andy1327
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pkg-config 磁盘位置相关的知识,希望对你有一定的参考价值。
cflags:
pkg-config --cflags libmodbus >> -I/usr/local/include/modbus
pkg-config --cflags glib-2.0 >> -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include
pkg-config --cflags grpc++ grpc protobuf >> -pthread -I/usr/local/include
libs:
pkg-config --libs libmodbus >> -L/usr/local/lib -lmodbus
pkg-config --libs glib-2.0 >> -lglib-2.0
pkg-config --libs grpc++ grpc protobuf >> -L/usr/local/lib -lgrpc++ -lgrpc -lprotobuf -pthread -lpthread
mysql_config --cflags >> -I/usr/include/mysql
mysql_config --libs >> -L/usr/lib/x86_64-linux-gnu -lmysqlclient -lpthread -lz -lm -lrt -ldl
以上是关于pkg-config 磁盘位置的主要内容,如果未能解决你的问题,请参考以下文章
在 CMake 脚本中添加到 pkg-config 的临时路径?