Hi,
I am trying to implement the u8glib libraries for my mega2560.
It all compiles, the problem is too much compiles. Apparently I am using up 330% of my flash!
The author of the library told me that I need to set up these because it is building more of the files than it should:
gcc options during compile step:
-ffunction-sections
-fdata-sectionsgcc options for linking:
-Wl,--gc-sections
The -f ones seem to be to do with optimization, and I have put them under there, the -W I think is no debugging, so I have set that, its just the last one Im not sure where it goes, or what its to do with (which might give me a clue).
Im using Eclipse.
Thanks