[v3,0/4] aarch64 -> arm32 cross compilation support
Message ID | 1586941391-11094-1-git-send-email-juraj.linkes@pantheon.tech (mailing list archive) |
---|---|
Headers |
Return-Path: <dev-bounces@dpdk.org> X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id C0EA1A0563; Wed, 15 Apr 2020 11:03:15 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 30B841D5AE; Wed, 15 Apr 2020 11:03:15 +0200 (CEST) Received: from lb.pantheon.sk (lb.pantheon.sk [46.229.239.20]) by dpdk.org (Postfix) with ESMTP id 247E61D5AC for <dev@dpdk.org>; Wed, 15 Apr 2020 11:03:14 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by lb.pantheon.sk (Postfix) with ESMTP id E8AD3B998A; Wed, 15 Apr 2020 11:03:12 +0200 (CEST) X-Virus-Scanned: amavisd-new at siecit.sk Received: from lb.pantheon.sk ([127.0.0.1]) by localhost (lb.pantheon.sk [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id fxou8x1e6T-5; Wed, 15 Apr 2020 11:03:11 +0200 (CEST) Received: from service-node1.lab.pantheon.local (unknown [46.229.239.141]) by lb.pantheon.sk (Postfix) with ESMTP id 771516B1A0; Wed, 15 Apr 2020 11:03:11 +0200 (CEST) From: =?utf-8?q?Juraj_Linke=C5=A1?= <juraj.linkes@pantheon.tech> To: bruce.richardson@intel.com, aconole@redhat.com, maicolgabriel@hotmail.com, Ruifeng.Wang@arm.com Cc: dev@dpdk.org, =?utf-8?q?Juraj_Linke=C5=A1?= <juraj.linkes@pantheon.tech> Date: Wed, 15 Apr 2020 11:03:07 +0200 Message-Id: <1586941391-11094-1-git-send-email-juraj.linkes@pantheon.tech> X-Mailer: git-send-email 2.7.4 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH v3 0/4] aarch64 -> arm32 cross compilation support X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions <dev.dpdk.org> List-Unsubscribe: <https://mails.dpdk.org/options/dev>, <mailto:dev-request@dpdk.org?subject=unsubscribe> List-Archive: <http://mails.dpdk.org/archives/dev/> List-Post: <mailto:dev@dpdk.org> List-Help: <mailto:dev-request@dpdk.org?subject=help> List-Subscribe: <https://mails.dpdk.org/listinfo/dev>, <mailto:dev-request@dpdk.org?subject=subscribe> Errors-To: dev-bounces@dpdk.org Sender: "dev" <dev-bounces@dpdk.org> |
Message
Juraj Linkeš
April 15, 2020, 9:03 a.m. UTC
Add support for arm32 cross build in meson and add aarch64 -> arm32 cross build to Travis. The patchset makes use of existing options in config/defconfig_arm-armv7a-linux-gcc a ports those to the meson build system. Tested here: https://travis-ci.com/github/jlinkes/dpdk/builds/160337737 The aarch64 -> arm32 build currently fails in l3fwd example. The failure is currently being worked on by arm devs. Juraj Linkeš (4): build: port arm32 options from make to meson build: add arm32 meson build flags build: add arm32 meson cross file ci: add aarch64 -> arm32 cross compiling jobs .ci/linux-build.sh | 7 ++- .travis.yml | 19 ++++++ config/arm/arm_armv7a_linux_gcc | 17 +++++ config/arm/meson.build | 135 ++++++++++++++++++++++------------------ drivers/net/ark/meson.build | 6 ++ drivers/net/avp/meson.build | 5 ++ drivers/net/cxgbe/meson.build | 6 ++ drivers/net/e1000/meson.build | 6 ++ drivers/net/enic/meson.build | 6 ++ drivers/net/fm10k/meson.build | 6 ++ drivers/net/hinic/meson.build | 6 ++ drivers/net/i40e/meson.build | 6 ++ drivers/net/ionic/meson.build | 6 ++ drivers/net/ixgbe/meson.build | 6 ++ drivers/net/qede/meson.build | 6 ++ drivers/net/vmxnet3/meson.build | 6 ++ lib/librte_vhost/meson.build | 2 +- 17 files changed, 188 insertions(+), 63 deletions(-) create mode 100644 config/arm/arm_armv7a_linux_gcc