我正在尝试使用 C++ 进行一些图像处理。我目前正在使用 OS X 10.7 并仅使用 makefile 和终端编写我的代码。我已经使用 macports 安装了 libpng,但我仍然无法与它链接。
g++ main.cpp -llibpng -O2 -o ImageManipulator
g++ main.cpp -lpng -O2 -o ImageManipulator
两者都失败了:
ld: library not found for -lpng
和
ld: library not found for -llibpng
有人知道如何在 OS X 上为此调用 g++ 吗?