- 论坛徽章:
- 0
|
try to find the iconv.h
find / -name iconv.h
When compiling, you can try pass "-I dir" to gcc, in order to include the head file.
(dir is the path of your iconv.h)
man gcc
-I dir
Add the directory dir to the list of directories to be searched for header files. Directories named by -I are searched before the standard system include directories. If the directory dir is a standard system include directory, the option is ignored to ensure that the default search order for system directories and the special treatment of system headers are not defeated .
[ 本帖最后由 hahasasa 于 2008-9-8 14:48 编辑 ] |
|