> Please help me to solve this issue. What do
> "CFLAGS=-I/USR/LOCAL/INCLUDE", "LDFLAGS=-L/USR/LOCAL/LIB" mean and
> how
> to set an argument pointing to the location of ICONV.H?
>
any version of the GCC C compiler will understand these environment
variables as follow:
CFLAGS=-I<pathname>
-------------------
this is the path of some directory where header files have to be
searched; you can define more than a single location, e.g.
-I/usr/local/include -I. -I../headers
this meaning:
a) search into /usr/local/include
b) if not found, then search into the current dir (.)
c) if still not found, then try ../headers
LDFLAGS=-L<pathname>
--------------------
exactly the same as above, this time intending the location(s)
where you intend the linker will search any required library
PLEASE NOTE: on any serious operating system pathnames are
always case-sensitive ... so (e.g. on Linux) /usr/local/include
is a valid path, but /USR/LOCAL/INCLUDE doesn't exist
bye Sandro
--
Il messaggio e' stato analizzato alla ricerca di virus o
contenuti pericolosi da MailScanner, ed e'
risultato non infetto.