Hi Thomas, Thomas Glanzmann wrote: > Hello, > > [ Junio please drop the patch, if you thought about putting it upstream ] > >> Did you understand what you did ? > > I do. But my objective wasn't get that function inline but get git to compile > under forte12. However. After you pushed me in the right direction I read the > compiler documentation and found a compiler option called "-features=no%extinl" > which makes it possible to compile git as is using forte12. What's strange with your compiler is that it seems to not take care of the "static" keyword and thinks about an "extern inline". Now it could be interesting to understand why. Let's look at your error [1]. First it only complain about tree_entry_extract not tree_entry_len. Let's see why ? If you look in tree-walk.h and search for tree_entry_extract, you will see : static inline const unsigned char *tree_entry_extract(struct tree_desc *desc, const char **pathp, unsigned int *modep) [...] const unsigned char *tree_entry_extract(struct tree_desc *, const char **, unsigned int *); This is bad, tree_entry_extract is declared as static inline and as extern. If you remove the "const unsigned char *tree_entry_extract(struct tree_desc *, const char **, unsigned int *);", I bet everybody will be happy and no need to extra option for the sun compiler. [2] Matthieu [1] LINK git-convert-objects ld: fatal: symbol `tree_entry_extract' is multiply-defined: (file libgit.a(sha1_name.o) type=FUNC; file libgit.a(tree.o) type=FUNC); ld: fatal: symbol `tree_entry_extract' is multiply-defined: (file libgit.a(sha1_name.o) type=FUNC; file libgit.a(tree-walk.o) type=FUNC); ld: fatal: File processing errors. No output written to git-convert-objects [2] see attached patch