From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Thu, 07 Oct 2021 12:22:22 +0200 Received: from metis.ext.pengutronix.de ([2001:67c:670:201:290:27ff:fe1d:cc33]) by lore.white.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1mYQXd-0006eR-Vm for lore@lore.pengutronix.de; Thu, 07 Oct 2021 12:22:21 +0200 Received: from localhost ([127.0.0.1] helo=metis.ext.pengutronix.de) by metis.ext.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1mYQXd-0000X9-JX; Thu, 07 Oct 2021 12:22:21 +0200 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.ext.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1mYQUD-0004pP-7V; Thu, 07 Oct 2021 12:18:49 +0200 Received: from [2a0a:edc0:0:1101:1d::39] (helo=dude03.red.stw.pengutronix.de) by drehscheibe.grey.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1mYQUC-0005z7-M5; Thu, 07 Oct 2021 12:18:48 +0200 Received: from mol by dude03.red.stw.pengutronix.de with local (Exim 4.92) (envelope-from ) id 1mYQUC-00GTSA-JA; Thu, 07 Oct 2021 12:18:48 +0200 From: Michael Olbrich To: ptxdist@pengutronix.de Date: Thu, 7 Oct 2021 12:18:48 +0200 Message-Id: <20211007101848.3926423-1-m.olbrich@pengutronix.de> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20210908113236.15651-5-p.zabel@pengutronix.de> References: <20210908113236.15651-5-p.zabel@pengutronix.de> MIME-Version: 1.0 Subject: Re: [ptxdist] [APPLIED] glslang: version bump 11.5.0 -> 11.6.0 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: Philipp Zabel Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit 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.ext.pengutronix.de); SAEximRunCond expanded to false Thanks, applied as 0af33a4d2ec7467d12fc2355549d0b79d95263c8. Michael [sent from post-receive hook] On Thu, 07 Oct 2021 12:18:48 +0200, Philipp Zabel wrote: > Signed-off-by: Philipp Zabel > Message-Id: <20210908113236.15651-5-p.zabel@pengutronix.de> > Signed-off-by: Michael Olbrich > > diff --git a/rules/glslang.make b/rules/glslang.make > index 76ee41ba4357..3c1908bff8c3 100644 > --- a/rules/glslang.make > +++ b/rules/glslang.make > @@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_GLSLANG) += glslang > # > # Paths and names > # > -GLSLANG_VERSION := 11.5.0 > -GLSLANG_MD5 := 6c86e1a5d65815a707af3bead744804c > +GLSLANG_VERSION := 11.6.0 > +GLSLANG_MD5 := 37918eefd58acd7309faf96fb83ab4ce > GLSLANG := glslang-$(GLSLANG_VERSION) > GLSLANG_SUFFIX := tar.gz > GLSLANG_URL := https://github.com/KhronosGroup/glslang/archive/$(GLSLANG_VERSION).$(GLSLANG_SUFFIX) > @@ -32,18 +32,19 @@ GLSLANG_CONF_TOOL := cmake > GLSLANG_CONF_OPT := \ > $(CROSS_CMAKE_USR) \ > -DCMAKE_BUILD_TYPE=Release \ > - -DCMAKE_INSTALL_LIBDIR=/usr/lib \ > - -DBUILD_SHARED_LIBS=ON \ > -DBUILD_EXTERNAL=OFF \ > - -DSKIP_GLSLANG_INSTALL=OFF \ > - -DENABLE_SPVREMAPPER=ON \ > + -DBUILD_SHARED_LIBS=ON \ > + -DENABLE_CTEST=OFF \ > + -DENABLE_EXCEPTIONS=OFF \ > -DENABLE_GLSLANG_BINARIES=ON \ > -DENABLE_GLSLANG_JS=OFF \ > -DENABLE_HLSL=OFF \ > - -DENABLE_RTTI=OFF \ > -DENABLE_OPT=ON \ > -DENABLE_PCH=ON \ > - -DENABLE_CTEST=OFF > + -DENABLE_RTTI=OFF \ > + -DENABLE_SPVREMAPPER=ON \ > + -DSKIP_GLSLANG_INSTALL=OFF \ > + -DUSE_CCACHE=OFF > > # ---------------------------------------------------------------------------- > # Target-Install > diff --git a/rules/host-glslang.make b/rules/host-glslang.make > index 2aaf3909a4e8..1718562d110b 100644 > --- a/rules/host-glslang.make > +++ b/rules/host-glslang.make > @@ -19,17 +19,19 @@ HOST_GLSLANG_CONF_TOOL := cmake > HOST_GLSLANG_CONF_OPT := \ > $(HOST_CMAKE_OPT) \ > -DCMAKE_BUILD_TYPE=Release \ > - -DCMAKE_INSTALL_LIBDIR=/usr/lib \ > - -DBUILD_SHARED_LIBS=OFF \ > -DBUILD_EXTERNAL=OFF \ > - -DSKIP_GLSLANG_INSTALL=OFF \ > - -DENABLE_SPVREMAPPER=ON \ > + -DBUILD_SHARED_LIBS=OFF \ > + -DENABLE_CTEST=OFF \ > + -DENABLE_EXCEPTIONS=OFF \ > + -DCMAKE_INSTALL_LIBDIR=/usr/lib \ > -DENABLE_GLSLANG_BINARIES=ON \ > -DENABLE_GLSLANG_JS=OFF \ > -DENABLE_HLSL=OFF \ > - -DENABLE_RTTI=OFF \ > -DENABLE_OPT=ON \ > -DENABLE_PCH=ON \ > - -DENABLE_CTEST=OFF > + -DENABLE_RTTI=OFF \ > + -DENABLE_SPVREMAPPER=ON \ > + -DSKIP_GLSLANG_INSTALL=OFF \ > + -DUSE_CCACHE=OFF > > # vim: syntax=make _______________________________________________ ptxdist mailing list ptxdist@pengutronix.de To unsubscribe, send a mail with subject "unsubscribe" to ptxdist-request@pengutronix.de