From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id E30A382C60 for ; Fri, 4 Jul 2025 13:46:40 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1751636801; cv=none; b=QkJSC1A3JBROTcsLnVdWwdKsPqWqKtdDiaiSLI3qmINyYOoY1R0xF7z3lk4/GQL/YMkkw8VNAfVb83BPFjbf9ml8PKCthq5JUA6LfF4XLQ1FhobjTqiL//BlqsZDyHFsazk2PvZCpSduYut8DLy4GxJ1g6Ask+mROUxmLT2qNpI= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1751636801; c=relaxed/simple; bh=bwAaebbvu7a63pqYChNLjbrIUwkDooy62loMnHz4QI8=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=ptHYARTBiWOw268Vl3UGNSb5SLrckB6k7I0TVmcAKGIO8JsfNnmliXy8IbZhqSA0Zq84mmBcpQREbZybT2lD7FKQmFj8XdIcZPgvrt37mBsUYzcgzb9nF9WWVgJWI9MMsCYc5cS9CEInmPPqKHUTxiumBBGT4ZYsefKeCmrcahA= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=HTwXn+nc; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="HTwXn+nc" Received: by smtp.kernel.org (Postfix) with ESMTPSA id F0C35C4CEE3; Fri, 4 Jul 2025 13:46:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1751636800; bh=bwAaebbvu7a63pqYChNLjbrIUwkDooy62loMnHz4QI8=; h=From:To:Cc:Subject:Date:From; b=HTwXn+ncAE7GEEXUmMnt3ZoVzjNCIla4pTyFLL9pLg6jRIwxJq19jgzo/1sepgE5Q kdczfHkMGyj5LpERWqYorVsYh4wEGdtUEfFe5Kejr3k0rbkSWwKhK86EiF3pzFOA6R WvSiBNZ/Toxk2yYnu8/WSyvB34h7In2OnnLw7dtmuLDyGt0zoQnFPHSQ08tBB5SQ+Z khFaVMUE0X7ymah1B1xEWiSulWnKHoMaHFEc1CKmywtFIZbDU47MZScPEk0Fn7g7MC OYseOzO1jTC/d2dJUSC5YylomCPejiKUda2Zy2aEpRuIwVplEf6JiiU0jDrzoGmDwu 1QsBSJPdA+cNQ== From: Chandan Babu R To: kdevops@lists.linux.dev Cc: Chandan Babu R , Daniel Gomez Subject: [PATCH V2] fstests/redhat: Install gcc-c++ package Date: Fri, 4 Jul 2025 19:16:15 +0530 Message-ID: <20250704134620.2333481-1-chandanbabu@kernel.org> X-Mailer: git-send-email 2.45.2 Precedence: bulk X-Mailing-List: kdevops@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Building xfsprogs on OL 9 is failing due to the non-availability of a C++ compiler. Hence, this commit adds gcc-c++ to the list of packages required to build xfsprogs. Signed-off-by: Chandan Babu R Suggested-by: Daniel Gomez --- playbooks/roles/fstests/tasks/install-deps/redhat/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/playbooks/roles/fstests/tasks/install-deps/redhat/main.yml b/playbooks/roles/fstests/tasks/install-deps/redhat/main.yml index f4f9161e..4e3825fc 100644 --- a/playbooks/roles/fstests/tasks/install-deps/redhat/main.yml +++ b/playbooks/roles/fstests/tasks/install-deps/redhat/main.yml @@ -127,4 +127,5 @@ - libselinux-devel - libsepol-devel - pcre2-devel + - gcc-c++ when: 'fstests_xfs_build_custom_xfsprogs|bool' -- 2.45.2