In the new GCC the order of the libraries matters, otherwise it will throw these Undefined reference errors. At host's hello_world Makefile: ``` $(BINARY): $(OBJS) - $(CC) $(LDADD) -o $@ $< + $(CC) -o $@ $< $(LDADD) ```
In the new GCC the order of the libraries matters, otherwise it will throw these Undefined reference errors. At host's hello_world Makefile: