I'm trying to build a standard program in tinyos. The Makefile looks like this:
COMPONENT=TestSerialAppC
BUILD_EXTRA_DEPS += TestSerial.class
CLEAN_EXTRA = *.class TestSerialMsg.java
CFLAGS += -I$(TOSDIR)/lib/T2Hack
TestSerial.class: $(wildcard *.java) TestSerialMsg.java
javac -target 1.4 -source 1.4 *.java
TestSerialMsg.java:
mig java -target=null $(CFLAGS) -java-classname=TestSerialMsg
TestSerial.h test_serial_msg -o $@
include $(MAKERULES)
And when I make it, there is error:
In file included from /usr/lib/ncc/deputy_nodeputy.h:4:
/usr/lib/gcc/i686-linux-gnu/5/include/stddef.h:429: requested alignment
is not a power of 2
failed to parse message file TestSerial.h
Makefile:11: recipe for target 'TestSerialMsg.java' failed
make: *** [TestSerialMsg.java] Error 1
I have no idea why this happened and how I can solve it. Is this a problem of gcc or a problem of java?
Edit: When I execute those commands in command line, I found the problem resides in:
mig java -target=null -I$(TOSDIR)/lib/T2Hack -java-classname=TestSerialMsg
TestSerial.h test_serial_msg -o TestSerialMsg.java
mig is a message interface generator for nesC. And I think it is because I use a wrong version of gcc while calling mig.