Comment 39 for bug 1747966

Revision history for this message
falstaff (falstaff) wrote :

I experienced a similar case when linking against libopencm3. Since libopencm3 has lots of symbols just reordering the library in front of the obj files did lead to lots of linker errors. In this case adding a linker group helped: `-Wl,--start-group -lopencm3_stm32f0 $(OBJS) -Wl,--end-group`. However, ordering the library before the obj files is still needed despite the linker group.