From patchwork Sun Apr 28 23:12:38 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 1124 Return-Path: Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 9E7C5600EE for ; Mon, 29 Apr 2019 01:12:57 +0200 (CEST) Received: from pendragon.station (net-37-182-44-227.cust.vodafonedsl.it [37.182.44.227]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 3988A2DF for ; Mon, 29 Apr 2019 01:12:57 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1556493177; bh=PWez/3Rqpyn8PNwBUDhIyo8JwZkYMNT6QDU3kq6HlzM=; h=From:To:Subject:Date:In-Reply-To:References:From; b=uQ8AsPydsCIR6EwuLdPK369gRZcvk5s5spRUckf/J5FhjIOar09BFeaqPxEag67xi lh8Z1QxCbnEth3auqkOl49UVDGcWmrV0NLmcug+PAIkn3GB7yn97uc9hgQLU9ugbob /EsulHBu7j9xs41BHHZqoBiQeTdZoO7SLXgszWug= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Date: Mon, 29 Apr 2019 02:12:38 +0300 Message-Id: <20190428231238.30547-2-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.21.0 In-Reply-To: <20190428231238.30547-1-laurent.pinchart@ideasonboard.com> References: <20190428231238.30547-1-laurent.pinchart@ideasonboard.com> MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH 2/2] libcamera: Use compile optimisation by default X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Apr 2019 23:12:57 -0000 Set the compiler optimisation level to 2 by default. Signed-off-by: Laurent Pinchart Reviewed-by: Jacopo Mondi --- meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/meson.build b/meson.build index d272ff33b100..a11a1e4c238e 100644 --- a/meson.build +++ b/meson.build @@ -5,6 +5,7 @@ project('libcamera', 'c', 'cpp', 'werror=true', 'warning_level=2', 'cpp_std=c++11', + 'optimization=2', ], license : 'LGPL 2.1+')