在 cygwin/msys bash 下使用 `pkg-config` 作为命令行参数
我正在尝试使用 cygwin 作为 Windows 下的构建环境。 我对 3rd 方软件包有一些依赖,例如 GTK+。
通常,当我在 Linux 下构建时,在 Makefile 中,我可以添加对 pkg-config 的调用作为 gcc 的参数,因此结果如下:
gcc example.c `pkg-config --libs --cflags gtk+-2.0`
这在 Linux 下工作正常,但在 cygwin 中我得到:
:Invalid argument make: *** [example] Error 1
现在,我只是手动运行 pkg-config 并将输出粘贴到 Makefile 中,这确实很糟糕。 有没有好的方法来解决或解决这个问题?
Make并不是罪魁祸首。 我可以复制并粘贴 make 用于调用 gcc 的命令行,并且它本身将运行 gcc,它会因“:无效参数”而停止。
我编写了一个小测试程序来打印命令行参数:
for (i = 0; i < argc; i++)
printf("'%s'\n", argv[i]);
注意单引号。
$ pkg-config --libs gtk+-2.0 -Lc:/mingw/lib -lgtk-win32-2.0 -lgdk-win32-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lpang owin32-1.0 -lgdi32 -lpangocairo-1.0 -lpango-1.0 -lcairo -lgobject-2.0 -lgmodule- 2.0 -lglib-2.0 -lintl
运行测试程序:
$ ./t `pkg-config --libs gtk+-2.0` 'C:\cygwin\home\smo\pvm\src\t.exe' '-Lc:/mingw/lib' '-lgtk-win32-2.0' '-lgdk-win32-2.0' '-latk-1.0' '-lgdk_pixbuf-2.0' '-lpangowin32-1.0' '-lgdi32' '-lpangocairo-1.0' '-lpango-1.0' '-lcairo' '-lgobject-2.0' '-lgmodule-2.0' '-lglib-2.0' '-lintl' '
注意最后一行的一个单引号。 看起来 argc 比应有的值大 1,并且 argv[argc - 1] 为 null。 在 Linux 上运行相同的测试不会得到此结果。
也就是说,是否有某种方法可以让 Makefile 将 pkg-config 的结果存储到变量中,然后使用该变量,而不是使用反引号运算符?
I'm trying to use cygwin as a build environment under Windows. I have some dependencies on 3rd party packages, for example, GTK+.
Normally when I build under Linux, in my Makefile I can add a call to pkg-config as an argument to gcc, so it comes out like so:
gcc example.c `pkg-config --libs --cflags gtk+-2.0`
This works fine under Linux, but in cygwin I get:
:Invalid argument make: *** [example] Error 1
Right now, I am just manually running pkg-config and pasting the output into the Makefile, which is truly terrible. Is there a good way to workaround or fix for this issue?
Make isn't the culprit. I can copy and paste the command line that make uses to call gcc, and that by itself will run gcc, which halts with ": Invalid argument".
I wrote a small test program to print out command line arguments:
for (i = 0; i < argc; i++)
printf("'%s'\n", argv[i]);
Notice the single quotes.
$ pkg-config --libs gtk+-2.0 -Lc:/mingw/lib -lgtk-win32-2.0 -lgdk-win32-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lpang owin32-1.0 -lgdi32 -lpangocairo-1.0 -lpango-1.0 -lcairo -lgobject-2.0 -lgmodule- 2.0 -lglib-2.0 -lintl
Running through the test program:
$ ./t `pkg-config --libs gtk+-2.0` 'C:\cygwin\home\smo\pvm\src\t.exe' '-Lc:/mingw/lib' '-lgtk-win32-2.0' '-lgdk-win32-2.0' '-latk-1.0' '-lgdk_pixbuf-2.0' '-lpangowin32-1.0' '-lgdi32' '-lpangocairo-1.0' '-lpango-1.0' '-lcairo' '-lgobject-2.0' '-lgmodule-2.0' '-lglib-2.0' '-lintl' '
Notice the one single quote on the last line. It looks like argc is one greater than it should be, and argv[argc - 1] is null. Running the same test on Linux does not have this result.
That said, is there, say, some way I could have the Makefile store the result of pkg-config into a variable, and then use that variable, rather than using the back-tick operator?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
您确定您使用的是 Cygwin 提供的 make 吗? 用于
检查 - 这应该返回“/usr/bin/make”和“GNU Make 3.8 [...]”或类似的内容。
Are you sure that you're using the make provided by Cygwin? Use
to check - this should return "/usr/bin/make" and "GNU Make 3.8 [...]" or something similar.
GTK_LIBS = $(shell pkg-config --libs gtk+-2.0)
GTK_LIBS = $(shell pkg-config --libs gtk+-2.0)
我的猜测是 cygwin 的 gcc 无法处理 -Lc:/mingw/lib。 尝试将其转换为 cygwin 路径。
My guess would be that cygwin's gcc can't handle -Lc:/mingw/lib. Try translating that to a cygwin path.
“t”输出末尾的单引号可能是 CRLF 翻译的产物。 你的 pkg-config 是 cygwin 应用程序吗? 我之前发布的 $(shell) 解决方案可能会对此有所帮助,因为 GNU make 似乎对不同的行结束样式相当宽容。
The single quote at the end of the "t" output may be an artifact of CRLF translation. Is your pkg-config a cygwin app? The $(shell) solution I posted earlier may help with this, as GNU make seems to be fairly tolerant of different line ending styles.
我遇到了类似的问题,我在这里找到了解决方案: http://www.demexp.org/dokuwiki /zh:demexp_build_on_windows
I had a similar issue and I found a fix here: http://www.demexp.org/dokuwiki/en:demexp_build_on_windows
嗯...你尝试过吗?
这会给你一些(很多)调试输出。
Hmmm... have you tried
That will give you some (lots) of debugging output.