From: matthieu castet <castet.matthieu@free.fr>
To: Thomas Glanzmann <thomas@glanzmann.de>
Cc: git@vger.kernel.org, junkio@cox.net
Subject: Re: [PATCH] Make git compile with SUNs forte12 compiler
Date: Sun, 13 May 2007 14:52:53 +0200 [thread overview]
Message-ID: <46470A25.70703@free.fr> (raw)
In-Reply-To: <20070513103038.GC18546@cip.informatik.uni-erlangen.de>
[-- Attachment #1: Type: text/plain, Size: 1771 bytes --]
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
[-- Attachment #2: patch --]
[-- Type: text/plain, Size: 489 bytes --]
--- a/tree-walk.h 2007-05-13 14:51:01.451827585 +0200
+++ b/tree-walk.h 2007-05-13 14:51:07.450235889 +0200
@@ -27,7 +27,6 @@
void update_tree_entry(struct tree_desc *);
void init_tree_desc(struct tree_desc *desc, const void *buf, unsigned long size);
-const unsigned char *tree_entry_extract(struct tree_desc *, const char **, unsigned int *);
/* Helper function that does both of the above and returns true for success */
int tree_entry(struct tree_desc *, struct name_entry *);
next prev parent reply other threads:[~2007-05-13 12:53 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-05-12 21:35 [PATCH] Make git compile with SUNs forte12 compiler Thomas Glanzmann
2007-05-13 9:47 ` Matthieu CASTET
2007-05-13 10:30 ` Thomas Glanzmann
2007-05-13 12:52 ` matthieu castet [this message]
2007-05-13 10:39 ` Johannes Schindelin
2007-05-13 10:52 ` Thomas Glanzmann
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=46470A25.70703@free.fr \
--to=castet.matthieu@free.fr \
--cc=git@vger.kernel.org \
--cc=junkio@cox.net \
--cc=thomas@glanzmann.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).