From: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
To: buildroot@busybox.net
Subject: [Buildroot] docs/buildroot.html - package make file make command overrides configure script CC setting
Date: Wed, 22 Oct 2008 14:38:21 +0200 [thread overview]
Message-ID: <20081022123821.GA25329@mx.loc> (raw)
In-Reply-To: <002401c9343a$7b4fe1b0$6901a8c0@iguana3>
On Wed, Oct 22, 2008 at 04:36:53AM -0700, John Schimandle wrote:
>I've been stumbling through adding a package to buildroot. Although I did
>make a successful package I did find a potential problem with the
>documenation, buildroot usage and documentation document at
>docs/buildroot.html specifically the section entitled "Extending Buildroot
>with more software". This section describes the package make file in
>package/name/name.mk. It shows an example of the file which I think is
>incorrect. Lines 33 and 34 specify a make statement that overrides the
>variable settings of CC that are set in configure. The overriding action
>causes all makes within the package to have the CC variable set to TARGET_CC
>and not the CC variable defined in the configure script. The CC variable in
>the configure script is set by TARGET_CONFIGURE_OPTS on line 22 of this
>example. TARGET_CONFIGURE_OPTS contains architecture specific information
>for the compiler which is important for some packages.
>
>Original statement in example
>
>33 $(FOO_DIR)/$(FOO_BINARY): $(FOO_DIR)/.configured
>34 $(MAKE) CC=$(TARGET_CC) -C $(FOO_DIR)
>
>I think the example should have the following statements (line 33 is
>unchanged)
>
>33 $(FOO_DIR)/$(FOO_BINARY): $(FOO_DIR)/.configured
>34 $(MAKE) -C $(FOO_DIR)
yes. I suggest you look at how often these documentation receives
updates, compared to the "code" itself..
>
>Now the targets see the full CC arguments that were passed to the configure
>script and were written into each Makefile in the package.
>
>I don't know if this would be valid for all packages but it seems to me that
This example should only be used for packages which do not use autotools
(autoconf / automake etc). These packages should use
package/Makefile.autotools.in and _not_ this oldish example code.
>you would want to preserve the CC variable setting that was done with the
>configure script.
>
>Again, I'm not sure how to submit this change to the buildroot tree.
"
Changes can be submitted for inclusion by posting them to the buildroot
mailing list or to the Bug and Patch Tracking System.
"
(from the webpage)
next parent reply other threads:[~2008-10-22 12:38 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <002401c9343a$7b4fe1b0$6901a8c0@iguana3>
2008-10-22 12:38 ` Bernhard Reutner-Fischer [this message]
2008-10-22 15:14 ` [Buildroot] docs/buildroot.html - package make file makecommand overrides configure script CC setting John Schimandle
2008-10-22 11:36 [Buildroot] docs/buildroot.html - package make file make command " John Schimandle
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=20081022123821.GA25329@mx.loc \
--to=rep.dot.nop@gmail.com \
--cc=buildroot@busybox.net \
/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.