From: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH next 07/12] package/pkg-cargo.mk: introduce the cargo package infrastructure
Date: Wed, 16 Dec 2020 15:23:25 +0100 [thread overview]
Message-ID: <20201216152325.6277cdbd@windsurf.home> (raw)
In-Reply-To: <dad088c8-c08e-740f-3c43-c1d2ac32f6ea@essensium.com>
Hello,
On Wed, 16 Dec 2020 14:58:39 +0100
Patrick Havelange <patrick.havelange@essensium.com> wrote:
> > +#
> > +# Target installation step. Only define it if not already defined by
> > +# the package .mk file.
> > +#
> > +ifndef $(2)_INSTALL_TARGET_CMDS
> > +define $(2)_INSTALL_TARGET_CMDS
> > + $$(TARGET_MAKE_ENV) $$($(2)_CARGO_ENV) \
> > + cargo install \
> > + --target $$(RUSTC_TARGET_NAME) \
> > + --offline \
> > + --root $$(TARGET_DIR)/usr/ \
> > + --bins \
> > + --path $$(@D) \
> > + --force \
> > + --locked \
> > + $$($(2)_CARGO_INSTALL_OPTS)
> > +endef
> > +endif
> > +
> > +ifndef $(2)_INSTALL_CMDS
> > +define $(2)_INSTALL_CMDS
> > + $$(HOST_MAKE_ENV) \
> > + RUSTFLAGS="$$(addprefix -C link-args=,$$(HOST_LDFLAGS))" \
> > + $$($(2)_CARGO_ENV) \
> > + cargo install \
> > + --offline \
> > + --root $$(HOST_DIR) \
> > + --bins \
> > + --path $$(@D) \
> > + --force \
> > + --locked \
> > + $$($(2)_CARGO_INSTALL_OPTS)
> > +endef
> > +endif
>
> Nitpick: This is the only minor thing that bothers me a bit: the
> duplication for the host/target cases of the cargo command flags. Would
> it not be better if they were merged ?
I agree. In fact while re-using your code and extending it, I did quite
a bit of back and forth in using variables to share options, not using
variables. I was not sure myself. But OK, if you also feel like we
should share those common options, I guess it's a sign that we should
go with that!
> BR,
Is this "Best Regards", "BuildRoot" or both ? :-)
Cheers!
Thomas
--
Thomas Petazzoni, CTO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
next prev parent reply other threads:[~2020-12-16 14:23 UTC|newest]
Thread overview: 38+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-11-19 21:36 [Buildroot] [PATCH next 00/12] Support for Cargo and Go vendoring Thomas Petazzoni
2020-11-19 21:36 ` [Buildroot] [PATCH next 01/12] support/download/dl-wrapper: add concept of download post-processing Thomas Petazzoni
2020-11-19 21:36 ` [Buildroot] [PATCH next 02/12] package/pkg-download.mk: add <pkg>_DOWNLOAD_POST_PROCESS variable Thomas Petazzoni
2020-11-19 21:36 ` [Buildroot] [PATCH next 03/12] package/pkg-download.mk: add <pkg>_DL_ENV variable Thomas Petazzoni
2020-11-19 21:36 ` [Buildroot] [PATCH next 04/12] support/download/post-process-helpers: add helper function for post process scripts Thomas Petazzoni
2020-11-19 21:36 ` [Buildroot] [PATCH next 05/12] support/download/go-post-process: implement Go vendoring support Thomas Petazzoni
2020-11-25 20:28 ` Christian Stewart
2020-11-25 20:37 ` Thomas Petazzoni
2020-11-25 20:51 ` Christian Stewart
2020-11-25 20:45 ` Christian Stewart
2020-11-25 20:52 ` Thomas Petazzoni
2020-11-25 20:54 ` Christian Stewart
2020-11-25 21:02 ` Christian Stewart
2020-11-25 21:07 ` Ryan Barnett
2020-11-25 21:12 ` Christian Stewart
2020-11-25 21:21 ` Christian Stewart
2020-11-25 21:49 ` Ryan Barnett
2020-11-19 21:36 ` [Buildroot] [PATCH next 06/12] package/tinifier: new package Thomas Petazzoni
2020-11-21 16:37 ` Ryan Barnett
2020-11-21 18:04 ` Yann E. MORIN
2020-11-22 6:08 ` Christian Stewart
2020-11-22 20:25 ` Sam Voss
2020-11-23 14:48 ` Ryan Barnett
2020-12-10 21:46 ` Thomas Petazzoni
2020-11-19 21:36 ` [Buildroot] [PATCH next 07/12] package/pkg-cargo.mk: introduce the cargo package infrastructure Thomas Petazzoni
2020-11-25 19:46 ` Ryan Barnett
2020-11-25 20:35 ` Thomas Petazzoni
2020-12-10 15:48 ` [Buildroot] [PATCH 1/1] package/pkg-cargo.mk: make sure .cargo/config is used Patrick Havelange
2020-12-10 20:31 ` Thomas Petazzoni
2020-12-16 13:40 ` Patrick Havelange
2020-12-16 17:33 ` Sam Voss
2020-12-16 13:58 ` [Buildroot] [PATCH next 07/12] package/pkg-cargo.mk: introduce the cargo package infrastructure Patrick Havelange
2020-12-16 14:23 ` Thomas Petazzoni [this message]
2020-11-19 21:36 ` [Buildroot] [PATCH next 08/12] docs/manual/cargo: document the cargo-package infrastructure Thomas Petazzoni
2020-11-19 21:36 ` [Buildroot] [PATCH next 09/12] package/ripgrep: convert to cargo infrastructure Thomas Petazzoni
2020-11-19 21:36 ` [Buildroot] [PATCH next 10/12] package/sentry-cli: convert to host-cargo-package infrastructure Thomas Petazzoni
2020-11-19 21:36 ` [Buildroot] [PATCH next 11/12] support/download/cargo-post-process, package/pkg-cargo.mk: enable vendoring for Cargo packages Thomas Petazzoni
2020-11-19 21:36 ` [Buildroot] [PATCH next 12/12] docs/manual/adding-packages-cargo.txt: rewrite explanation about dependency management Thomas Petazzoni
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=20201216152325.6277cdbd@windsurf.home \
--to=thomas.petazzoni@bootlin.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.