문제

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