From: Ramsay Jones <ramsay@ramsay1.demon.co.uk>
To: Jonathan Nieder <jrnieder@gmail.com>
Cc: Junio C Hamano <gitster@pobox.com>,
GIT Mailing-list <git@vger.kernel.org>
Subject: Re: [PATCH 4/4] Makefile: Don't pass $(ALL_CFLAGS) to the linker
Date: Sat, 26 Jun 2010 18:59:53 +0100 [thread overview]
Message-ID: <4C264019.6030408@ramsay1.demon.co.uk> (raw)
In-Reply-To: <20100623210820.GA24242@burratino>
Jonathan Nieder wrote:
> Ramsay Jones wrote:
>
>> LINK : warning LNK4044: unrecognized option '/Zi'; ignored
>>
>> In order to suppress the warning, we refrain from passing the
>> $(ALL_CFLAGS) macro to the linker.
>>
>> Note that, should it be necessary in the future, an option
>> intended for both the (front-end) compiler and the linker can
>> be included in both CFLAGS and LDFLAGS.
>
> I think traditionally CPPFLAGS is meant to be used for the purpose
> you are describing (see [1] for example).
Really? I thought that the general scheme was something like:
- LDFLAGS is for options which only affects the operation of
the linker (e.g. -L).
- CPPFLAGS is for options which only affects the operation of
the C pre-processor (e.g. -I, -D, -U)
- CFLAGS is for options which only affects the operation of
the compiler proper.
If an option affects multiple phases, then (one option) is to include
it into each of the above macros to which it applies.
In practice, of course, I've yet to see a Makefile which faithfully
implements the above scheme. ;-)
Also, the last time I was forced to use automake (yuck), I noticed that
it passed CPPFLAGS to the linker; I consider this to be a bug in
automake. :-P
[CFLAGS et. al. are also supposed to be user settable ...]
> I realize that the Makefile does not currently use the terms this way:
> making it consistent would require
>
> . s/BASIC_CFLAGS/BASIC_CPPFLAGS/, except that the
>
> BASIC_CFLAGS += -Kthread
>
> settings should probably stay as-is
>
> . Windows BASIC_CFLAGS would probably need to be split:
>
> BASIC_CFLAGS = -nologo
> BASIC_CPPFLAGS = -I. -I../zlib ... -DWIN32 ...
>
> . s/COMPAT_CFLAGS/COMPAT_CPPFLAGS
>
> What do you think?
I think I am missing something, since I don't see how this relates to
my patch!
I'm sure the misunderstanding is mine; sorry to be so dense!
ATB,
Ramsay Jones
next prev parent reply other threads:[~2010-06-26 18:02 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-06-23 19:48 [PATCH 4/4] Makefile: Don't pass $(ALL_CFLAGS) to the linker Ramsay Jones
2010-06-23 21:08 ` Jonathan Nieder
2010-06-26 17:59 ` Ramsay Jones [this message]
2010-06-26 18:19 ` Jonathan Nieder
2010-06-30 19:40 ` Ramsay Jones
2010-06-30 21:16 ` Andreas Schwab
2010-06-27 9:44 ` Bernhard R. Link
2010-06-24 15:30 ` Peter Harris
2010-06-25 20:24 ` Ramsay Jones
2010-06-27 20:45 ` Peter Harris
2010-06-30 19:52 ` Ramsay Jones
2010-07-01 21:27 ` Peter Harris
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=4C264019.6030408@ramsay1.demon.co.uk \
--to=ramsay@ramsay1.demon.co.uk \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=jrnieder@gmail.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.