Page 1 of 1

Issue in header file recognisation

PostPosted: Wed Jul 17, 2013 12:55 pm
by Dora ji
Hi all,

I am trying to include the header file named "jni'.

I have included it in system libraries.But while calling the header file in a code,i got an severe error as "The #include file <jni> is not found. "

How to resolve it??

Re: Issue in header file recognisation

PostPosted: Wed Jul 17, 2013 6:25 pm
by Ed Goodman
Not much help, but I found a big discussion of the SEARCH and LSEARCH options in my C++ user guide. It talks about how the compiler finds included files.

Re: Issue in header file recognisation

PostPosted: Tue Jul 30, 2013 8:54 am
by mwilliams
Use the SEARCH option to specify system include files (as in #include <blah.h>)
and the LSEARCH option to specify your include files (as in #include “blah.h”)

Is this clear enough?