Re: setenv -I option



On 29 Mar 2006 07:05:08 -0800, Prateek <prateek.a@xxxxxxxxx> wrote:
Hi,
I have seen the below command for csh shell:

"setenv CPPFLAGS -I$(IODBC_INSTALLDIR)/include"

Can someone please explain to me what the "-I" option in the above
command stands for. I have tried searching extensively over the
internet but was of no use. Also what would be the equivalent command
in bash shell.

It is setting an environment variable for C++ compiler flags for what
looks like the iODBC database system. The -I would be setting a path to
search for include files. The bash equivalent would be something like

export CPPFLAGS="-I$IODBC_INSTALLDIR/include"

Frink

--
Doctor J. Frink : 'Rampant Ribald Ringtail'
See his mind here : http://www.cmp.liv.ac.uk/frink/
Annoy his mind here : pjf at cmp dot liv dot ack dot ook
"No sir, I didn't like it!" - Mr Horse
.



Relevant Pages