From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by dpdk.org (Postfix) with ESMTP id 797DF374E for ; Thu, 14 Mar 2019 18:09:39 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by orsmga104.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 14 Mar 2019 10:09:38 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.58,478,1544515200"; d="scan'208";a="152373644" Received: from asirvys-mobl.ger.corp.intel.com (HELO [10.237.221.14]) ([10.237.221.14]) by fmsmga004.fm.intel.com with ESMTP; 14 Mar 2019 10:09:36 -0700 To: Natanael Copa , dev@dpdk.org References: <20190313170657.16688-1-ncopa@alpinelinux.org> From: "Sirvys, Andrius" Message-ID: <5d78dd5d-d7dc-76aa-a074-a28f912a12d9@intel.com> Date: Thu, 14 Mar 2019 17:09:36 +0000 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:60.0) Gecko/20100101 Thunderbird/60.5.3 MIME-Version: 1.0 In-Reply-To: <20190313170657.16688-1-ncopa@alpinelinux.org> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit Content-Language: en-GB Subject: Re: [dpdk-dev] [PATCH v3 00/15] Build fixes for musl libc X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Mar 2019 17:09:39 -0000 When I try building I'm still getting this error /root/dpdk/app/test-pmd/bpf_cmd.c:23:11: error: initialization discards 'const' qualifier from pointer target type [-Werror=discarded-qualifiers]     .val = &stdout, On 13/03/2019 17:06, Natanael Copa wrote: > A set of patches to fix build with musl libc. I also did a few cleanups wrt > macros and fixed a few scary compiler warnings while at it. > > Please note that those are only compile tested on x86_64 with musl libc. > > v2 has some code style fixes reported by checkpatch > v3 is a full reroll of the entire patch set to enable automatted tests > and logic for patchwork patchset. > > Natanael Copa (15): > app/testpmd: replace uint with unsigned int > net/cxgbe: replace uint with unsigned int > bus/pci: add fallback for out[lwb]_p for non GNU libc > bus/pci: factor out various ifdefs in pci_uio_ioport_{read,write} > bus/fslmc: fix compile error with musl libc > bus/fslmc: remove unused include of error.h > net/nfp: build fix for musl libc > app/test: include fcntl.h due to use of O_RDONLY > app/test: fix setting of -D_GNU_SOURCE with meson > bus/dpaa: use warn(3) instead of error(3) to improve portability > bus/dpaa: fix warning: "__WORDSIZE" is not defined, evaluates to 0 > crypto/dpaa2_sec: build fix for musl libc > crypto/dpaa2_sec: simplify pr_{debug,err,warn} macros > net/netvsc: fix compile warning for fcntl.h include > eal/linux: simplify debug message in sigbus_handler > > app/test-pmd/testpmd.h | 2 +- > app/test/meson.build | 2 +- > app/test/test_eal_flags.c | 1 + > drivers/bus/dpaa/base/fman/netcfg_layer.c | 4 +- > drivers/bus/dpaa/base/qbman/bman_driver.c | 6 +- > drivers/bus/dpaa/base/qbman/qman_driver.c | 12 ++-- > drivers/bus/dpaa/include/compat.h | 2 +- > drivers/bus/dpaa/include/fsl_qman.h | 3 +- > drivers/bus/fslmc/qbman/include/compat.h | 2 +- > drivers/bus/pci/linux/pci_uio.c | 82 ++++++++++++++-------- > drivers/crypto/dpaa2_sec/hw/compat.h | 36 +++++----- > drivers/net/cxgbe/base/common.h | 18 ++--- > drivers/net/netvsc/hn_vf.c | 2 +- > drivers/net/nfp/nfpcore/nfp_cpp_pcie_ops.c | 2 + > lib/librte_eal/linux/eal/eal_dev.c | 4 +- > 15 files changed, 99 insertions(+), 79 deletions(-) > From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by dpdk.space (Postfix) with ESMTP id 1672DA0096 for ; Thu, 14 Mar 2019 18:09:42 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 96B174CA0; Thu, 14 Mar 2019 18:09:41 +0100 (CET) Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by dpdk.org (Postfix) with ESMTP id 797DF374E for ; Thu, 14 Mar 2019 18:09:39 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by orsmga104.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 14 Mar 2019 10:09:38 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.58,478,1544515200"; d="scan'208";a="152373644" Received: from asirvys-mobl.ger.corp.intel.com (HELO [10.237.221.14]) ([10.237.221.14]) by fmsmga004.fm.intel.com with ESMTP; 14 Mar 2019 10:09:36 -0700 To: Natanael Copa , dev@dpdk.org References: <20190313170657.16688-1-ncopa@alpinelinux.org> From: "Sirvys, Andrius" Message-ID: <5d78dd5d-d7dc-76aa-a074-a28f912a12d9@intel.com> Date: Thu, 14 Mar 2019 17:09:36 +0000 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:60.0) Gecko/20100101 Thunderbird/60.5.3 MIME-Version: 1.0 In-Reply-To: <20190313170657.16688-1-ncopa@alpinelinux.org> Content-Type: text/plain; charset="UTF-8"; format="flowed" Content-Transfer-Encoding: 8bit Content-Language: en-GB Subject: Re: [dpdk-dev] [PATCH v3 00/15] Build fixes for musl libc X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Message-ID: <20190314170936.jpehpoLiPlLYJvldBgdkaIvpwzZIDL3JYzKZqawCTQA@z> When I try building I'm still getting this error /root/dpdk/app/test-pmd/bpf_cmd.c:23:11: error: initialization discards 'const' qualifier from pointer target type [-Werror=discarded-qualifiers]     .val = &stdout, On 13/03/2019 17:06, Natanael Copa wrote: > A set of patches to fix build with musl libc. I also did a few cleanups wrt > macros and fixed a few scary compiler warnings while at it. > > Please note that those are only compile tested on x86_64 with musl libc. > > v2 has some code style fixes reported by checkpatch > v3 is a full reroll of the entire patch set to enable automatted tests > and logic for patchwork patchset. > > Natanael Copa (15): > app/testpmd: replace uint with unsigned int > net/cxgbe: replace uint with unsigned int > bus/pci: add fallback for out[lwb]_p for non GNU libc > bus/pci: factor out various ifdefs in pci_uio_ioport_{read,write} > bus/fslmc: fix compile error with musl libc > bus/fslmc: remove unused include of error.h > net/nfp: build fix for musl libc > app/test: include fcntl.h due to use of O_RDONLY > app/test: fix setting of -D_GNU_SOURCE with meson > bus/dpaa: use warn(3) instead of error(3) to improve portability > bus/dpaa: fix warning: "__WORDSIZE" is not defined, evaluates to 0 > crypto/dpaa2_sec: build fix for musl libc > crypto/dpaa2_sec: simplify pr_{debug,err,warn} macros > net/netvsc: fix compile warning for fcntl.h include > eal/linux: simplify debug message in sigbus_handler > > app/test-pmd/testpmd.h | 2 +- > app/test/meson.build | 2 +- > app/test/test_eal_flags.c | 1 + > drivers/bus/dpaa/base/fman/netcfg_layer.c | 4 +- > drivers/bus/dpaa/base/qbman/bman_driver.c | 6 +- > drivers/bus/dpaa/base/qbman/qman_driver.c | 12 ++-- > drivers/bus/dpaa/include/compat.h | 2 +- > drivers/bus/dpaa/include/fsl_qman.h | 3 +- > drivers/bus/fslmc/qbman/include/compat.h | 2 +- > drivers/bus/pci/linux/pci_uio.c | 82 ++++++++++++++-------- > drivers/crypto/dpaa2_sec/hw/compat.h | 36 +++++----- > drivers/net/cxgbe/base/common.h | 18 ++--- > drivers/net/netvsc/hn_vf.c | 2 +- > drivers/net/nfp/nfpcore/nfp_cpp_pcie_ops.c | 2 + > lib/librte_eal/linux/eal/eal_dev.c | 4 +- > 15 files changed, 99 insertions(+), 79 deletions(-) >