我需要導入this包。go.png中的libpng包
它需要zlib和libpng。
我用MinGW編譯zlib和libpng(我的操作系統 - Windows 8.1 64)。
現在libpng.a
在MinGW的lib文件夾,但沒什麼變化,同樣arror:
In file included from ./bitmap/../base/io_c.h:4:0,
from ./bitmap/goBitmap.h:25,
from ..\github.com\go-vgo\robotgo\robotgo.go:26:
./bitmap/../base/png_io_c.h:4:17: fatal error: png.h: No such file or directory
#include <png.h>
你設置你的CPATH和LIBRARY_PATH環境vairables爲GCC?因爲它看起來就是無法在它所知道的任何文件夾中找到png.h;即使你編譯了libpng,它仍然至少需要頭文件。 –