From patchwork Fri Jun 26 09:28:47 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Robert Mader X-Patchwork-Id: 27045 Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id 1B2ACC3261 for ; Fri, 26 Jun 2026 09:29:25 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id CFB69658EA; Fri, 26 Jun 2026 11:29:23 +0200 (CEST) Authentication-Results: lancelot.ideasonboard.com; dkim=pass (1024-bit key; unprotected) header.d=collabora.com header.i=robert.mader@collabora.com header.b="C1dVz3u2"; dkim-atps=neutral Received: from sender4-pp-f112.zoho.com (sender4-pp-f112.zoho.com [136.143.188.112]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 40DAD658E5 for ; Fri, 26 Jun 2026 11:29:20 +0200 (CEST) ARC-Seal: i=1; a=rsa-sha256; t=1782466157; cv=none; d=zohomail.com; s=zohoarc; b=KbF36iO9HJWM24Ffh7zfHkssb7AdOs93P3uODbT4SUIbKSy8gSIIykLEvdbjTAfDA+9xoS+YZw+WNLe5Lk3dvsR2hpUrGWpFcvh1Z5Ag+UybWjNehRErzuL2KUCJkWYGqeZpwgU/caGOkb4sjQ/+AXHj076VqStGMjdcKcr76HI= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1782466157; h=Content-Type:Content-Transfer-Encoding:Cc:Cc:Date:Date:From:From:In-Reply-To:MIME-Version:Message-ID:References:Subject:Subject:To:To:Message-Id:Reply-To; bh=GQc4+qL7PHvyke0w+e0CxwL8Q2kInlpBwo3Ixhy3Qjc=; b=F/6YLGh/2ArOupTtyIZPMgycLjwQ3gMUQ/FgPRIxX9RBsG882i2BHPOgRrbQHf7nPL8tNhahuAHSuQ99wcikKAShTvg5BdRRHjlRCaUPtOxvUMxPkvg5fIIxcHmCr+8a3lP82flwhjRFyWt0i5SpcIfjq411rNBHf0Ir6D404g8= ARC-Authentication-Results: i=1; mx.zohomail.com; dkim=pass header.i=collabora.com; spf=pass smtp.mailfrom=robert.mader@collabora.com; dmarc=pass header.from= DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; t=1782466157; s=zohomail; d=collabora.com; i=robert.mader@collabora.com; h=From:From:To:To:Cc:Cc:Subject:Subject:Date:Date:Message-ID:In-Reply-To:References:MIME-Version:Content-Type:Content-Transfer-Encoding:Message-Id:Reply-To; bh=GQc4+qL7PHvyke0w+e0CxwL8Q2kInlpBwo3Ixhy3Qjc=; b=C1dVz3u2iJKRbFZT/PtGHsR7luF1H0s90zzEXkSXhUJkRQZibiPTdBoVlt7KaPtY m0jPGGZPR8F3vsI4pMBnK5MnY1mG4U6Ft7fxh/NvAUbqCZHzQHWbtR9Ccd/OKfAkzFM 0ScFMNXmELhnQQ9GgtgUrkUmBAu+PTjYQFTwxsmg= Received: by mx.zohomail.com with SMTPS id 1782466155551524.0614950095598; Fri, 26 Jun 2026 02:29:15 -0700 (PDT) From: Robert Mader To: libcamera-devel@lists.libcamera.org Cc: Robert Mader , =?utf-8?q?Barnab=C3=A1s_P?= =?utf-8?b?xZFjemU=?= , Kieran Bingham Subject: [PATCH v2 2/2] meson: Build virtual pipeline by default Date: Fri, 26 Jun 2026 11:28:47 +0200 Message-ID: <20260626092847.289764-3-robert.mader@collabora.com> X-Mailer: git-send-email 2.54.0 In-Reply-To: <20260626092847.289764-1-robert.mader@collabora.com> References: <20260626092847.289764-1-robert.mader@collabora.com> MIME-Version: 1.0 X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" The virtual pipeline is very helpful for debugging purposes and very small. One big reason to not build it by default in the past was likely the libyuv dependency, which many distros did not ship by default. By now big distros like Debian, Fedora, and others ship libyuv and already use it when building libcamera. Fedora even enables both test pipelines by default. Thus let's build the virtual pipeline by default, facilitating libcamera adoption. Signed-off-by: Robert Mader Reviewed-by: Barnabás Pőcze Acked-by: Kieran Bingham --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 9cd73462f..3b8d54a65 100644 --- a/meson.build +++ b/meson.build @@ -224,7 +224,7 @@ pipelines_support = { 'simple': ['any'], 'uvcvideo': ['any'], 'vimc': ['test'], - 'virtual': ['test'], + 'virtual': ['any'], } if wanted_pipelines.contains('all')