From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 6FDFDA0093; Tue, 14 Jun 2022 14:31:27 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 5CDE740A81; Tue, 14 Jun 2022 14:31:27 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mails.dpdk.org (Postfix) with ESMTP id 3410A4069C for ; Tue, 14 Jun 2022 14:31:26 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1655209885; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=wAxAi4pWSTZusQyzS9GJRVeWYxnC5TeZsbkDvV+J1lA=; b=IxOokPXPi1lOZlr83rJRdaT4PNxtFzMoyMGuUZu6yUCj92cqxC7oq8FxsqZlcqC0ZdWQnF 1SIrZEhJNoqH36InWjcgU70yrTQQ4lNeCeFlfDFA320pifG4d/RRWBxv4AhNZPaoVV7kdU Szp3Y65/R/vjZY2s/CC7bWw2KgZYJLc= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-502-1sUrFXgGOayg4dXwue2ARw-1; Tue, 14 Jun 2022 08:31:24 -0400 X-MC-Unique: 1sUrFXgGOayg4dXwue2ARw-1 Received: from smtp.corp.redhat.com (int-mx09.intmail.prod.int.rdu2.redhat.com [10.11.54.9]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 163038027EE; Tue, 14 Jun 2022 12:31:24 +0000 (UTC) Received: from RHTPC1VM0NT (unknown [10.22.17.104]) by smtp.corp.redhat.com (Postfix) with ESMTPS id D3926492CA4; Tue, 14 Jun 2022 12:31:23 +0000 (UTC) From: Aaron Conole To: Stanislaw Kardach Cc: David Marchand , dev@dpdk.org, upstream@semihalf.com Subject: Re: [PATCH 3/3] ci: use crossbuild-essential-riscv64 for compiling References: <20220609121701.716299-1-kda@semihalf.com> <20220609121701.716299-4-kda@semihalf.com> Date: Tue, 14 Jun 2022 08:31:18 -0400 In-Reply-To: <20220609121701.716299-4-kda@semihalf.com> (Stanislaw Kardach's message of "Thu, 9 Jun 2022 14:17:01 +0200") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.85 on 10.11.54.9 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=aconole@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Stanislaw Kardach writes: > The current packages installed for RISC-V build check do not contain a > C++ compiler, which hid an issue with C++ type conversion in the > rte_vect.h header on RISC-V or in the scalar implementation of the LPM > x4 lookup. Now that this issue is fixed, use the full toolchain install > to enable the C++ test. > > Besides, the user's guide for RISC-V cross-compilation recommends the > use of crossbuild-essential-riscv64. > > Signed-off-by: Stanislaw Kardach > --- Acked-by: Aaron Conole