* bug report: build issue with git 2.2.2 using uclibc toolchain
@ 2015-01-30 15:55 Lance Fredrickson
2015-01-30 16:30 ` Lance Fredrickson
2015-01-30 16:33 ` Jeff King
0 siblings, 2 replies; 3+ messages in thread
From: Lance Fredrickson @ 2015-01-30 15:55 UTC (permalink / raw)
To: git
I've been keeping up-to-date versions of git built for an embedded
mipsel architecture device running on uclibc.
2.2.1 and previous versions build fine, but 2.2.2 stops with an error.
The toolchain is an OpenWRT variant (entware) using gcc 4.6.4 and uclibc
0.9.32, available at the following.
http://entware.wl500g.info/sources/
Here is the output of the build error.
CC builtin/grep.o
builtin/get-tar-commit-id.c: In function 'cmd_get_tar_commit_id':
builtin/get-tar-commit-id.c:31:12: error: dereferencing pointer to
incomplete type
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: bug report: build issue with git 2.2.2 using uclibc toolchain
2015-01-30 15:55 bug report: build issue with git 2.2.2 using uclibc toolchain Lance Fredrickson
@ 2015-01-30 16:30 ` Lance Fredrickson
2015-01-30 16:33 ` Jeff King
1 sibling, 0 replies; 3+ messages in thread
From: Lance Fredrickson @ 2015-01-30 16:30 UTC (permalink / raw)
To: git
Sorry, file this one away under user error. I had an issue with my build
environment.
cheers!
On 1/30/2015 8:55 AM, Lance Fredrickson wrote:
> I've been keeping up-to-date versions of git built for an embedded
> mipsel architecture device running on uclibc.
> 2.2.1 and previous versions build fine, but 2.2.2 stops with an error.
>
> The toolchain is an OpenWRT variant (entware) using gcc 4.6.4 and
> uclibc 0.9.32, available at the following.
> http://entware.wl500g.info/sources/
>
> Here is the output of the build error.
>
> CC builtin/grep.o
> builtin/get-tar-commit-id.c: In function 'cmd_get_tar_commit_id':
> builtin/get-tar-commit-id.c:31:12: error: dereferencing pointer to
> incomplete type
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: bug report: build issue with git 2.2.2 using uclibc toolchain
2015-01-30 15:55 bug report: build issue with git 2.2.2 using uclibc toolchain Lance Fredrickson
2015-01-30 16:30 ` Lance Fredrickson
@ 2015-01-30 16:33 ` Jeff King
1 sibling, 0 replies; 3+ messages in thread
From: Jeff King @ 2015-01-30 16:33 UTC (permalink / raw)
To: Lance Fredrickson; +Cc: git
On Fri, Jan 30, 2015 at 08:55:20AM -0700, Lance Fredrickson wrote:
> I've been keeping up-to-date versions of git built for an embedded mipsel
> architecture device running on uclibc.
> 2.2.1 and previous versions build fine, but 2.2.2 stops with an error.
>
> The toolchain is an OpenWRT variant (entware) using gcc 4.6.4 and uclibc
> 0.9.32, available at the following.
> http://entware.wl500g.info/sources/
>
> Here is the output of the build error.
>
> CC builtin/grep.o
> builtin/get-tar-commit-id.c: In function 'cmd_get_tar_commit_id':
> builtin/get-tar-commit-id.c:31:12: error: dereferencing pointer to
> incomplete type
That seems odd. The line in question is:
if (header->typeflag[0] != 'g')
the "header" variable is defined above as:
struct ustar_header *header = (struct ustar_header *)buffer;
and "struct ustar_header" is defined in "tar.h", which is included
above.
uclibc ships its own tar.h. Ours should take precedence (because we use
""), but perhaps there is something funny going on in the build
settings. I can't find any interesting changes in v2.2.1..v2.2.2,
though.
Can you double-check that v2.2.1 still builds, and if so try to use "git
bisect start v2.2.2 v2.2.1" to find the responsible commit?
-Peff
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-01-30 16:33 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-01-30 15:55 bug report: build issue with git 2.2.2 using uclibc toolchain Lance Fredrickson
2015-01-30 16:30 ` Lance Fredrickson
2015-01-30 16:33 ` Jeff King
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).