0

我想用 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;
}
*/

然后我运行“安装”,它说:

# 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”,没关系。

4

1 回答 1

2

GraphicsMagick-config脚本是一个单独的程序,而不是一个 pkg-config 资源,它解释了这个问题。

此外,使用非选项参数运行 pkg-config 似乎会失败而不会打印错误消息,这可能会让您感到困惑。

但是,除了这个脚本之外,该库还GraphicsMagick.pc为 pkg-config 安装了一个数据文件。所以你应该能够让你的代码运行:

#cgo pkg-config: GraphicsMagick
于 2013-03-13T14:03:00.917 回答