> build_linux/TOSComm_wrap.cxx:108:17: error: jni.h: No such file or directory

That's probably your basic problem with this situation.

Somehow the JNI header file is not being included.  You can manually include it 
by passing the 
compilation command the -I option with the path of directory CONTAINING the 
header file.  

Probably you already know about that...

But just to be on the safe side:

You know, if you see a command like

g++ -c hello.C

and it can't find blah.h which is in /usr/include/blah-stuff, you can do

g++ -I/usr/include/blah-stuff -c hello.C

Stuff like that.

I'm too exhausted to be more insightful.

Sorry,

Jon.

_______________________________________________
Tinyos-help mailing list
Tinyos-help@Millennium.Berkeley.EDU
https://mail.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

Reply via email to