g++ Magick 的问题++ 和赛格温

发布于 2024-07-13 11:18:15 字数 394 浏览 7 评论 0原文

当我尝试使用 Magick++ 和 cygwin 编译一个简单的 c++ 文件时,我不断得到以下结果:

$ g++ -o imageTest imageTest.cpp `GraphicsMagick++-config --cppflags --cxxflags --ldflags --libs`  
g++: unrecognized option `-no-undefined'
/usr/lib/gcc/i686-pc-cygwin/3.4.4/../../../../i686-pc-cygwin/bin/ld: cannot find -ldpstk  
collect2: ld returned 1 exit status

我通过 cygwin gui 设置安装了 ImageMagick。

When I try to compile a simple c++ file using Magick++ and cygwin, I keep getting this result:

$ g++ -o imageTest imageTest.cpp `GraphicsMagick++-config --cppflags --cxxflags --ldflags --libs`  
g++: unrecognized option `-no-undefined'
/usr/lib/gcc/i686-pc-cygwin/3.4.4/../../../../i686-pc-cygwin/bin/ld: cannot find -ldpstk  
collect2: ld returned 1 exit status

I installed ImageMagick through the cygwin gui setup.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

最近可好 2024-07-20 11:18:15

GraphicsMagick 和 ImageMagick 是两个不同的库。 如果您想使用 ImageMagick 构建程序,正如您所说,只需更改

GraphicsMagick++-config

Magick++-config

This 应该可以。 至于 GraphicsMagick,看起来 Cygwin 中当前的 -devel 库已损坏,因为它需要一个不再可用的库 (libdpstk)。 (如果您有兴趣,请查看此处。)

GraphicsMagick and ImageMagick are two different libraries. If you want to build your program using ImageMagick, as you state, it's just a matter of changing

GraphicsMagick++-config

into

Magick++-config

This should work. As for GraphicsMagick, it looks like the current -devel library in Cygwin is broken, as it requires a library (libdpstk) which is no longer available. (Have a look here if you are interested.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文