我想用cgo运行GraphicsMagick。
/*
#cgo pkg-config: GraphicsMagick-config
#include <magick/api.h>
static int gm(int argc, char **argv) {
int status;
status = GMCommand(argc, argv);
return 1-status;
}
*/
然后我运行'go install',它说:
# pkg-config --cflags GraphicsMagick-config
Package GraphicsMagick-config was not found in the pkg-config search path.
Perhaps you should add the directory containing `GraphicsMagick-config.pc'
to the PKG_CONFIG_PATH environment variable
No package 'GraphicsMagick-config' found
exit status 1
但是我在shell中运行'pkg-config GraphicsMagick-config',没关系。
答案 0 :(得分:2)
GraphicsMagick-config
脚本是一个单独的程序而不是pkg-config资源,它解释了这个问题。
此外,使用非选项参数运行pkg-config似乎失败而不打印错误消息,这可能会让您感到困惑。
除了这个脚本之外,库还会为pkg-config安装GraphicsMagick.pc
数据文件。因此,您应该能够使用以下命令运行代码:
#cgo pkg-config: GraphicsMagick