git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* Re: Build errors when building git on MacOS 11 (x86-64) and for M1 macs
       [not found] <f5487adb-b7dc-4f97-bca1-749701337759n@googlegroups.com>
@ 2021-06-10 13:52 ` Ævar Arnfjörð Bjarmason
  2021-06-10 14:24   ` Felipe Contreras
  2021-06-10 14:36   ` Jeff King
  0 siblings, 2 replies; 4+ messages in thread
From: Ævar Arnfjörð Bjarmason @ 2021-06-10 13:52 UTC (permalink / raw)
  To: Nikhil Gupta; +Cc: git-packagers, Git List


[CC-ing the main git@ list for the "bug in git" aspect of this]

On Thu, Jun 10 2021, Nikhil Gupta wrote:

> &nbsp; | The following shell command exited with status 2:
> &nbsp; | &nbsp;
> &nbsp; | $ CFLAGS=-I/opt/chef-workstation/embedded/include -O3 -D_FORTIFY_SOURCE=2 -fstack-protector CPPFLAGS=-I/opt/chef-workstation/embedded/include -O3
> -D_FORTIFY_SOURCE=2 -fstack-protector CXXFLAGS=-I/opt/chef-workstation/embedded/include -O3 -D_FORTIFY_SOURCE=2 -fstack-protector
> LDFLAGS=-Wl,-rpath,/opt/chef-workstation/embedded/lib -L/opt/chef-workstation/embedded/lib LD_RUN_PATH=/opt/chef-workstation/embedded/lib MAKE=gmake
> OMNIBUS_INSTALL_DIR=/opt/chef-workstation
> PATH=/opt/chef-workstation/bin:/opt/chef-workstation/embedded/bin:/Users/administrator/.buildkite-agent/builds/MM009-local-1/chef/chef-chef-workstation-master-omnibus-adhoc/omnibus/vendor/bundle/ruby/2.7.0/bin:/opt/angry-omnibus-toolchain/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin
> PKG_CONFIG_PATH=/opt/chef-workstation/embedded/lib/pkgconfig gmake prefix=/opt/chef-workstation/embedded bindir=/opt/chef-workstation/gitbin -j 10
> [...]
> &nbsp; | * new script parameters
> &nbsp; | builtin/archive.c:48:24: error: implicit declaration of function 'archive_format_from_filename' is invalid in C99
> [-Werror,-Wimplicit-function-declaration]
> &nbsp; | const char *format = archive_format_from_filename(name_hint);
> &nbsp; | ^
> &nbsp; | builtin/archive.c:48:24: note: did you mean 'archive_read_open_filename'?
> &nbsp; | /opt/chef-workstation/embedded/include/archive.h:527:15: note: 'archive_read_open_filename' declared here
> &nbsp; | __LA_DECL int archive_read_open_filename(struct archive *,
> &nbsp; | ^
> &nbsp; | builtin/archive.c:48:15: warning: incompatible integer to pointer conversion initializing 'const char *' with an expression of type 'int'
> [-Wint-conversion]
> &nbsp; | const char *format = archive_format_from_filename(name_hint);
> &nbsp; | ^        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> &nbsp; | builtin/archive.c:101:2: error: implicit declaration of function 'init_archivers' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
> &nbsp; | init_archivers();
> &nbsp; | ^
> &nbsp; | builtin/archive.c:111:9: error: implicit declaration of function 'write_archive' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
> &nbsp; | return write_archive(argc, argv, prefix, the_repository, output, 0);
> &nbsp; | ^
> &nbsp; | builtin/archive.c:111:9: note: did you mean 'write_or_die'?
> &nbsp; | ./cache.h:1737:6: note: 'write_or_die' declared here
> &nbsp; | void write_or_die(int fd, const void *buf, size_t count);
> &nbsp; | ^
> &nbsp; | 1 warning and 3 errors generated.
> &nbsp; | gmake: *** [Makefile:2431: builtin/archive.o] Error 1
> &nbsp; | gmake: *** Waiting for unfinished jobs....
> &nbsp; | &nbsp;
> &nbsp; | &nbsp;

I have no access to such a system, but I think think I see the problem
from what you've supplied here.

You supplied a CFLAGS=-I/opt/chef-workstation/embedded/include which has
an archive.h file that's unrelated to the archive.h file git expects.

Thus we include that and find things unrelated to git, and error when we
encounter a function we expected to have declared in our own archive.h.

The solution is something like defining a config.mak file where you add
flags with BASIC_CFLAGS +=, not =. See config.mak.uname for an
example. You'll then add new directories after our own -I.

This is arguably a bug in git's Makefile in that we should have that
"-I." in an ESSENTIAL_CFLAGS variable or something, I can't think of a
scenario where git would compile without it. That or things in builtin/
should include e.g. ../archive.h, perhaps such a thing isn't portable.

I think (but have not confirmed) that you probably got this far because
your compiler will stick -I. at the /end/ of the flags implicitly (or is
that standardized C behavior? I can't remember).

So it worked until we had a filename conflict, i.e. we'd find strbuf.h
in our own sources, but have an issue with a common name like archive.h.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Build errors when building git on MacOS 11 (x86-64) and for M1 macs
  2021-06-10 13:52 ` Build errors when building git on MacOS 11 (x86-64) and for M1 macs Ævar Arnfjörð Bjarmason
@ 2021-06-10 14:24   ` Felipe Contreras
  2021-06-10 14:36   ` Jeff King
  1 sibling, 0 replies; 4+ messages in thread
From: Felipe Contreras @ 2021-06-10 14:24 UTC (permalink / raw)
  To: Ævar Arnfjörð Bjarmason, Nikhil Gupta
  Cc: git-packagers, Git List

Ævar Arnfjörð Bjarmason wrote:

> This is arguably a bug in git's Makefile in that we should have that
> "-I." in an ESSENTIAL_CFLAGS variable or something, I can't think of a
> scenario where git would compile without it.

If they are so essential we probably don't even need a variable, just
put it directly into the $(CC) command.

-- 
Felipe Contreras

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Build errors when building git on MacOS 11 (x86-64) and for M1 macs
  2021-06-10 13:52 ` Build errors when building git on MacOS 11 (x86-64) and for M1 macs Ævar Arnfjörð Bjarmason
  2021-06-10 14:24   ` Felipe Contreras
@ 2021-06-10 14:36   ` Jeff King
  2021-06-10 14:51     ` Jeff King
  1 sibling, 1 reply; 4+ messages in thread
From: Jeff King @ 2021-06-10 14:36 UTC (permalink / raw)
  To: Ævar Arnfjörð Bjarmason
  Cc: Nikhil Gupta, git-packagers, Git List

On Thu, Jun 10, 2021 at 03:52:09PM +0200, Ævar Arnfjörð Bjarmason wrote:

> I have no access to such a system, but I think think I see the problem
> from what you've supplied here.
> 
> You supplied a CFLAGS=-I/opt/chef-workstation/embedded/include which has
> an archive.h file that's unrelated to the archive.h file git expects.
> 
> Thus we include that and find things unrelated to git, and error when we
> encounter a function we expected to have declared in our own archive.h.

Yeah, I agree that is likely the problem.

> The solution is something like defining a config.mak file where you add
> flags with BASIC_CFLAGS +=, not =. See config.mak.uname for an
> example. You'll then add new directories after our own -I.

That would work, though I think in general we should consider
BASIC_CFLAGS to be an internal thing, and encourage people to use the
standard CFLAGS, etc.

> This is arguably a bug in git's Makefile in that we should have that
> "-I." in an ESSENTIAL_CFLAGS variable or something, I can't think of a
> scenario where git would compile without it. That or things in builtin/
> should include e.g. ../archive.h, perhaps such a thing isn't portable.

Yeah, we do say "-I." explicitly and unconditionally. I think we'd just
want to make sure it's before any user-provided flags. We could do
something like this:

diff --git a/Makefile b/Makefile
index 7d719ece46..b5794560e9 100644
--- a/Makefile
+++ b/Makefile
@@ -1241,7 +1241,7 @@ ALL_COMMANDS_TO_INSTALL += git-upload-archive$(X)
 ALL_COMMANDS_TO_INSTALL += git-upload-pack$(X)
 endif
 
-ALL_CFLAGS = $(DEVELOPER_CFLAGS) $(CPPFLAGS) $(CFLAGS)
+ALL_CFLAGS = $(DEVELOPER_CFLAGS) $(CPPFLAGS) $(BASIC_CFLAGS) $(CFLAGS)
 ALL_LDFLAGS = $(LDFLAGS)
 
 comma := ,
@@ -2106,7 +2106,6 @@ PAGER_ENV_CQ = "$(subst ",\",$(subst \,\\,$(PAGER_ENV)))"
 PAGER_ENV_CQ_SQ = $(subst ','\'',$(PAGER_ENV_CQ))
 BASIC_CFLAGS += -DPAGER_ENV='$(PAGER_ENV_CQ_SQ)'
 
-ALL_CFLAGS += $(BASIC_CFLAGS)
 ALL_LDFLAGS += $(BASIC_LDFLAGS)
 
 export DIFF TAR INSTALL DESTDIR SHELL_PATH

but I imagine that it is helpful for other BASIC_CFLAGS to be
overrideable by the user's CFLAGS (especially other system-level -I
directives we may include!). So yes, having an $(ESSENTIAL_CFLAGS) would
work. Or perhaps even just:

diff --git a/Makefile b/Makefile
index 7d719ece46..72517db31e 100644
--- a/Makefile
+++ b/Makefile
@@ -1202,7 +1202,7 @@ endif
 CFLAGS = -g -O2 -Wall
 LDFLAGS =
 CC_LD_DYNPATH = -Wl,-rpath,
-BASIC_CFLAGS = -I.
+BASIC_CFLAGS =
 BASIC_LDFLAGS =
 
 # library flags
@@ -1241,7 +1241,7 @@ ALL_COMMANDS_TO_INSTALL += git-upload-archive$(X)
 ALL_COMMANDS_TO_INSTALL += git-upload-pack$(X)
 endif
 
-ALL_CFLAGS = $(DEVELOPER_CFLAGS) $(CPPFLAGS) $(CFLAGS)
+ALL_CFLAGS = -I. $(DEVELOPER_CFLAGS) $(CPPFLAGS) $(CFLAGS)
 ALL_LDFLAGS = $(LDFLAGS)
 
 comma := ,

since this "-I." really is special.

> I think (but have not confirmed) that you probably got this far because
> your compiler will stick -I. at the /end/ of the flags implicitly (or is
> that standardized C behavior? I can't remember).

The standard just says (for quoted #include lines):

  The named source file is searched for in an implementation-defined
  manner.

Most compilers put the directory of the source file at the start of the
search path. E.g., gcc says under -I:

  1. For the quote form of the include directive, the directory of the
     current file is searched first.

Which is why we need "-I." at all; we are finding "archive.h" from
"builtin/*.c". I'm not sure what "current file" there means, or how
portable it is. Is it the source file being filed, or the file
containing the #include directive?

I'd hope it's consistently the latter. Otherwise "foo.h" which includes
"bar.h" cannot be included as "../foo.h" (from builtin/foo.c) and as
"foo.h" (from top-level foo.c).

If so, then yeah, using "../archive.h" (and dropping -I. entirely) would
be an option. Which is nice, because it makes things less magical and
more predictable (think what confusion we'd see if we introduced
"archive.h" into builtin/ ourselves).

We do use "../foo.h" in lots of places already. But the fact that we
_also_ have "-I." means I don't think we have any data on the "what does
current file mean" question above. My gut feeling is that it probably
does consistently work as we'd want it to, though.

-Peff

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: Build errors when building git on MacOS 11 (x86-64) and for M1 macs
  2021-06-10 14:36   ` Jeff King
@ 2021-06-10 14:51     ` Jeff King
  0 siblings, 0 replies; 4+ messages in thread
From: Jeff King @ 2021-06-10 14:51 UTC (permalink / raw)
  To: Ævar Arnfjörð Bjarmason
  Cc: Nikhil Gupta, git-packagers, Git List

On Thu, Jun 10, 2021 at 10:36:27AM -0400, Jeff King wrote:

> Most compilers put the directory of the source file at the start of the
> search path. E.g., gcc says under -I:
> 
>   1. For the quote form of the include directive, the directory of the
>      current file is searched first.
> 
> Which is why we need "-I." at all; we are finding "archive.h" from
> "builtin/*.c". I'm not sure what "current file" there means, or how
> portable it is. Is it the source file being filed, or the file
> containing the #include directive?
> 
> I'd hope it's consistently the latter. Otherwise "foo.h" which includes
> "bar.h" cannot be included as "../foo.h" (from builtin/foo.c) and as
> "foo.h" (from top-level foo.c).
> 
> If so, then yeah, using "../archive.h" (and dropping -I. entirely) would
> be an option. Which is nice, because it makes things less magical and
> more predictable (think what confusion we'd see if we introduced
> "archive.h" into builtin/ ourselves).

There's a related case, which is that within trace2/foo.c, we'd include
trace2/foo.h. Without "-I.", the correct include there is just "foo.h".

So what was explicit actually becomes implicit. Here's a real example to
make this file work without -I:

  diff --git a/trace2/tr2_tgt_perf.c b/trace2/tr2_tgt_perf.c
  index a8018f18cc..592c194ab4 100644
  --- a/trace2/tr2_tgt_perf.c
  +++ b/trace2/tr2_tgt_perf.c
  @@ -1,15 +1,15 @@
  -#include "cache.h"
  -#include "config.h"
  -#include "run-command.h"
  -#include "quote.h"
  -#include "version.h"
  -#include "json-writer.h"
  -#include "trace2/tr2_dst.h"
  -#include "trace2/tr2_sid.h"
  -#include "trace2/tr2_sysenv.h"
  -#include "trace2/tr2_tbuf.h"
  -#include "trace2/tr2_tgt.h"
  -#include "trace2/tr2_tls.h"
  +#include "../cache.h"
  +#include "../config.h"
  +#include "../run-command.h"
  +#include "../quote.h"
  +#include "../version.h"
  +#include "../json-writer.h"
  +#include "tr2_dst.h"
  +#include "tr2_sid.h"
  +#include "tr2_sysenv.h"
  +#include "tr2_tbuf.h"
  +#include "tr2_tgt.h"
  +#include "tr2_tls.h"

So I dunno. I had hoped it would be a strict readability improvement,
but now I'm not so sure.

-Peff

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-06-10 14:51 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <f5487adb-b7dc-4f97-bca1-749701337759n@googlegroups.com>
2021-06-10 13:52 ` Build errors when building git on MacOS 11 (x86-64) and for M1 macs Ævar Arnfjörð Bjarmason
2021-06-10 14:24   ` Felipe Contreras
2021-06-10 14:36   ` Jeff King
2021-06-10 14:51     ` Jeff King

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

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 read-only IMAP folder(s) and NNTP newsgroup(s).