I installed libiconv from http://www.gnu.org/software/libiconv/.

$ ./configure --prefix=/usr/local
$ make
$ make install

Then I add #include <iconv.h> declaration in my project.

I am getting following error how can I fix this?

fatal error: iconv.h: No such file or directory
compilation terminated.

P.S. I am using OS X.

有帮助吗?

解决方案

Chances are, /usr/local/include is not in your default include path. Try adding -I/usr/local/include to your compilation command.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top