From: Sergey Bobrenok <bobrofon@gmail.com>
To: Charles Hardin <ckhardin@gmail.com>
Cc: Samuel Martin <s.martin49@gmail.com>, buildroot@buildroot.org
Subject: Re: [Buildroot] [PATCH 1/1] package/sdbus-cpp: add support to build the host stub generator
Date: Tue, 20 Jun 2023 23:04:43 +0300 [thread overview]
Message-ID: <7rlv211qi5269d.fsf@gmail.com> (raw)
In-Reply-To: <20230620174321.4774-1-ckhardin@gmail.com>
Hi Charles,
I also think that it would be useful to have an option to build
the 'sdbus-c++-xml2cpp'
host tool. I even tried to add a host variant of the package
initially [1]. But I wasn't
sure of the right way to implement it.
'sdbus-c++-xml2cpp' is more like a stand-alone tool: it doesn't
depend on sdbus-c++ or its
dependencies, it has its own build files, it requires a different
C++ standard (14 vs 17).
It just lives in the same repository.
So I think, maybe it would be better to make 'sdbus-c++-xml2cpp' a
separate host package?
For example, the same approach is used in the 'Yocto meta-oe'
repository: one package for
sdbus-c++ itself, and another package for sdbus-c++-tools [2].
[1]
https://lore.kernel.org/all/20201113171845.63359-1-bobrofon@gmail.com/
[2]
https://lore.kernel.org/all/CAA9bybPbYubZDBnACQAa+44K4Jkza9Eb9wpgAo_r0WB7e6MjaA@mail.gmail.com/
Charles Hardin <ckhardin@gmail.com> writes:
> Add a host option to build the xml2cpp-codegen part of the
> sdbus-cpp package for use in creating adaptor and proxy
> implementations from the D-Bus IDL.
>
> Signed-off-by: Charles Hardin <ckhardin@gmail.com>
> ---
> package/Config.in.host | 1 +
> package/sdbus-cpp/Config.in.host | 14 ++++++++++++++
> package/sdbus-cpp/sdbus-cpp.mk | 9 +++++++++
> 3 files changed, 24 insertions(+)
> create mode 100644 package/sdbus-cpp/Config.in.host
>
> diff --git a/package/Config.in.host b/package/Config.in.host
> index dcadbfdfc1..13eec7f7f5 100644
> --- a/package/Config.in.host
> +++ b/package/Config.in.host
> @@ -94,6 +94,7 @@ menu "Host utilities"
> source "package/rustc/Config.in.host"
> source "package/s6-rc/Config.in.host"
> source "package/sam-ba/Config.in.host"
> + source "package/sdbus-cpp/Config.in.host"
> source "package/sdbusplus/Config.in.host"
> source "package/sentry-cli/Config.in.host"
> source "package/sloci-image/Config.in.host"
> diff --git a/package/sdbus-cpp/Config.in.host
> b/package/sdbus-cpp/Config.in.host
> new file mode 100644
> index 0000000000..79402af441
> --- /dev/null
> +++ b/package/sdbus-cpp/Config.in.host
> @@ -0,0 +1,14 @@
> +config BR2_PACKAGE_HOST_SDBUS_CPP
> + bool "host-sdbus-c++-xml2cpp"
> + depends on BR2_INSTALL_LIBSTDCPP
> + depends on BR2_PACKAGE_HOST_SYSTEMD
> + select BR2_PACKAGE_HOST_PKGCONF
> + depends on BR2_HOST_GCC_AT_LEAST_7
> + help
> + sdbus-c++ is a high-level C++ D-Bus library for Linux
> + designed to provide expressive, easy-to-use API in modern
> C++.
> +
> + This will build the stub code generator for the adaptor and
> + proxy interfaces from D-Bus IDL.
> +
> + https://github.com/Kistler-Group/sdbus-cpp
> diff --git a/package/sdbus-cpp/sdbus-cpp.mk
> b/package/sdbus-cpp/sdbus-cpp.mk
> index 0e8d74cfcd..ece18126ba 100644
> --- a/package/sdbus-cpp/sdbus-cpp.mk
> +++ b/package/sdbus-cpp/sdbus-cpp.mk
> @@ -12,4 +12,13 @@ SDBUS_CPP_DEPENDENCIES = host-pkgconf systemd
> SDBUS_CPP_LICENSE = LGPL-2.1+ with exception (headers)
> SDBUS_CPP_LICENSE_FILES = COPYING COPYING-LGPL-Exception
>
> +# Host build for sdbus-c++-xml2cpp
> +HOST_SDBUS_CPP_DEPENDENCIES = host-pkgconf host-systemd
'sdbus-c++-xml2cpp' depends on the 'expat' library, so
'host-expat' is required as well.
> +HOST_SDBUS_CPP_CONF_OPTS += \
> + -DBUILD_CODE_GEN=ON \
> + -DBUILD_DOC=OFF \
> + -DBUILD_TESTS=OFF \
> + -DBUILD_LIBSYSTEMD=OFF
> +
> $(eval $(cmake-package))
> +$(eval $(host-cmake-package))
--
Sergey Bobrenok
System software developer
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
next prev parent reply other threads:[~2023-06-20 21:06 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-06-20 17:43 [Buildroot] [PATCH 1/1] package/sdbus-cpp: add support to build the host stub generator Charles Hardin
2023-06-20 20:04 ` Sergey Bobrenok [this message]
2023-09-30 14:13 ` Thomas Petazzoni via buildroot
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=7rlv211qi5269d.fsf@gmail.com \
--to=bobrofon@gmail.com \
--cc=buildroot@buildroot.org \
--cc=ckhardin@gmail.com \
--cc=s.martin49@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.