From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Fri, 07 Nov 2025 09:53:46 +0100 Received: from metis.whiteo.stw.pengutronix.de ([2a0a:edc0:2:b01:1d::104]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1vHIE6-00GF4z-1Q for lore@lore.pengutronix.de; Fri, 07 Nov 2025 09:53:46 +0100 Received: from localhost ([127.0.0.1] helo=metis.whiteo.stw.pengutronix.de) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1vHIE5-0004Ys-WD; Fri, 07 Nov 2025 09:53:46 +0100 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.whiteo.stw.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1vHIDk-0003zn-83; Fri, 07 Nov 2025 09:53:24 +0100 Received: from dude05.red.stw.pengutronix.de ([2a0a:edc0:0:1101:1d::54]) by drehscheibe.grey.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1vHIDk-007V67-0B; Fri, 07 Nov 2025 09:53:24 +0100 Received: from mol by dude05.red.stw.pengutronix.de with local (Exim 4.98.2) (envelope-from ) id 1vHIDk-00000009GZd-01Nm; Fri, 07 Nov 2025 09:53:24 +0100 From: Michael Olbrich To: ptxdist@pengutronix.de Date: Fri, 7 Nov 2025 09:53:23 +0100 Message-ID: <20251107085323.2208654-1-m.olbrich@pengutronix.de> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20251028143921.512916-1-s.pueschel@pengutronix.de> References: <20251028143921.512916-1-s.pueschel@pengutronix.de> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: Re: [ptxdist] [APPLIED] host-abseil-cpp: new package X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Cc: =?UTF-8?q?Sven=20P=C3=BCschel?= Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.whiteo.stw.pengutronix.de); SAEximRunCond expanded to false Thanks, applied as cb2e1e64f38eb12cb381578fd5268d3ba65e034b. Michael [sent from post-receive hook] On Fri, 07 Nov 2025 09:53:23 +0100, Sven Püschel wrote: > Signed-off-by: Sven Püschel > Message-Id: <20251028143921.512916-1-s.pueschel@pengutronix.de> > [mol: add missing jinja dependency] > Signed-off-by: Michael Olbrich > > diff --git a/rules/host-abseil-cpp.in b/rules/host-abseil-cpp.in > new file mode 100644 > index 000000000000..35232a25431f > --- /dev/null > +++ b/rules/host-abseil-cpp.in > @@ -0,0 +1,7 @@ > +## SECTION=hosttools_noprompt > + > +config HOST_ABSEIL_CPP > + tristate > + select HOST_CMAKE > + select HOST_NINJA > + default y if ALLYES > diff --git a/rules/host-abseil-cpp.make b/rules/host-abseil-cpp.make > new file mode 100644 > index 000000000000..4bb70bc4a089 > --- /dev/null > +++ b/rules/host-abseil-cpp.make > @@ -0,0 +1,30 @@ > +# -*-makefile-*- > +# > +# Copyright (C) 2025 by Sven Püschel > +# > +# For further information about the PTXdist project and license conditions > +# see the README file. > +# > + > +# > +# We provide this package > +# > +HOST_PACKAGES-$(PTXCONF_HOST_ABSEIL_CPP) += host-abseil-cpp > + > +# ---------------------------------------------------------------------------- > +# Prepare > +# ---------------------------------------------------------------------------- > + > +HOST_ABSEIL_CPP_CONF_TOOL := cmake > +HOST_ABSEIL_CPP_CONF_OPT = \ > + $(HOST_CMAKE_OPT) \ > + -G Ninja \ > + -DABSL_BUILD_MONOLITHIC_SHARED_LIBS=OFF \ > + -DABSL_BUILD_TESTING=OFF \ > + -DABSL_BUILD_TEST_HELPERS=OFF \ > + -DABSL_ENABLE_INSTALL=ON \ > + -DABSL_PROPAGATE_CXX_STD=OFF \ > + -DABSL_USE_SYSTEM_INCLUDES=OFF \ > + -DBUILD_TESTING=OFF > + > +# vim: syntax=make