From patchwork Mon Jun 29 11:06:19 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Jo=C3=A3o_Marcos_Costa?= X-Patchwork-Id: 91257 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id A83E5C43458 for ; Mon, 29 Jun 2026 11:07:03 +0000 (UTC) Received: from smtpout-04.galae.net (smtpout-04.galae.net [185.171.202.116]) by mx.groups.io with SMTP id smtpd.msgproc01-g2.35200.1782731216685723973 for ; Mon, 29 Jun 2026 04:06:56 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="dkim: body hash did not verify" header.i=@bootlin.com header.s=dkim header.b=g1rQ0J6x; spf=pass (domain: bootlin.com, ip: 185.171.202.116, mailfrom: joaomarcos.costa@bootlin.com) Received: from smtpout-01.galae.net (smtpout-01.galae.net [212.83.139.233]) by smtpout-04.galae.net (Postfix) with ESMTPS id 4D4B0C5145E; Mon, 29 Jun 2026 11:07:04 +0000 (UTC) Received: from mail.galae.net (mail.galae.net [212.83.136.155]) by smtpout-01.galae.net (Postfix) with ESMTPS id 3FD985FF96; Mon, 29 Jun 2026 11:06:54 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) by localhost (Mailerdaemon) with ESMTPSA id 88D7B106F1732; Mon, 29 Jun 2026 13:06:53 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bootlin.com; s=dkim; t=1782731213; h=from:subject:date:message-id:to:cc:mime-version:content-type: content-transfer-encoding:in-reply-to:references; bh=kpd9gjNV+J5BQWdI1bpYN6voReIGKx0/RApgYLIw7qE=; b=g1rQ0J6x6NhpWcMHWD0Xwd+NGCOFR2BZWeWC2RnagOcyRIOADw2dP/zBW+Ye9xGxHXQihV 5TTVUXlKmsIxYOpe81j2qWcmLp9zc3bBmcUtTTDCeFLMDBLiKbXctdUZYG0HY7RzFS8RMk aIjBUiU1LkevG+9DoArpRKlJ7sMDkpGuUR/x44QginXxJzO3ie17DYs21p/GWKzDJrqzaE HXDlcGCjkSn4oq4+HrCkcTno+MmaB0qslRQWz94TffUahKPPUPw8OLAqy078g4cQKgA4q5 KOdepWbjh+l4IE5ZnNrw0Q/15OQ7kDlKp5jEUKo9d+BTqrxFglu+HjgIDQv0gg== From: =?utf-8?q?Jo=C3=A3o_Marcos_Costa?= To: openembedded-core@lists.openembedded.org Cc: thomas.petazzoni@bootlin.com, raj.khem@gmail.com, =?utf-8?q?Jo=C3=A3o_Ma?= =?utf-8?q?rcos_Costa?= Subject: [PATCH 2/2] clang_git.bb: remove dangling comment Date: Mon, 29 Jun 2026 13:06:19 +0200 Message-ID: <20260629110619.530623-3-joaomarcos.costa@bootlin.com> X-Mailer: git-send-email 2.47.0 In-Reply-To: <20260629110619.530623-1-joaomarcos.costa@bootlin.com> References: <20260629110619.530623-1-joaomarcos.costa@bootlin.com> MIME-Version: 1.0 X-Last-TLS-Session-Version: TLSv1.3 List-Id: X-Webhook-Received: from 45-33-107-173.ip.linodeusercontent.com [45.33.107.173] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Mon, 29 Jun 2026 11:07:03 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-core/message/239758 CMAKE_VERBOSE is already enabled in cmake.bbclass (inherited in this recipe). I would have considering uncommenting the line if it originally meant to disable the verbose mode. Signed-off-by: João Marcos Costa --- meta/recipes-devtools/clang/clang_git.bb | 2 -- 1 file changed, 2 deletions(-) diff --git a/meta/recipes-devtools/clang/clang_git.bb b/meta/recipes-devtools/clang/clang_git.bb index 662cda1b2e..d55c59ffa0 100644 --- a/meta/recipes-devtools/clang/clang_git.bb +++ b/meta/recipes-devtools/clang/clang_git.bb @@ -54,8 +54,6 @@ OECMAKE_SOURCEPATH = "${S}/clang" # linux hosts (.so) on Windows .pyd SOLIBSDEV:mingw32 = ".pyd" -#CMAKE_VERBOSE = "VERBOSE=1" - EXTRA_OECMAKE += "-DLLVM_ENABLE_ASSERTIONS=OFF \ -DLLVM_ENABLE_PIC=ON \ -DCLANG_DEFAULT_PIE_ON_LINUX=ON \