Re: [dpdk-dev] [PATCH v2 1/5] mk/icc: disable treatment of warnings as errors

2020-01-27 Thread Thomas Monjalon
27/01/2020 16:37, Ferruh Yigit: > On 1/24/2020 7:37 PM, Thomas Monjalon wrote: > > 24/01/2020 17:36, Ferruh Yigit: > >> On 1/23/2020 6:20 PM, Alexander Kozyrev wrote: > >>> Remove -Werror-all flag in ICC configuration file to stop treating ICC > >>> warnings as errors in DPDK due to many false posi

Re: [dpdk-dev] [PATCH v2 1/5] mk/icc: disable treatment of warnings as errors

2020-01-27 Thread Ferruh Yigit
On 1/24/2020 7:37 PM, Thomas Monjalon wrote: > 24/01/2020 17:36, Ferruh Yigit: >> On 1/23/2020 6:20 PM, Alexander Kozyrev wrote: >>> Remove -Werror-all flag in ICC configuration file to stop treating ICC >>> warnings as errors in DPDK due to many false positives. We are using >>> GCC and Clang as a

Re: [dpdk-dev] [PATCH v2 1/5] mk/icc: disable treatment of warnings as errors

2020-01-24 Thread Thomas Monjalon
24/01/2020 17:36, Ferruh Yigit: > On 1/23/2020 6:20 PM, Alexander Kozyrev wrote: > > Remove -Werror-all flag in ICC configuration file to stop treating ICC > > warnings as errors in DPDK due to many false positives. We are using > > GCC and Clang as a benchmark for warnings anyway for simplificatio

Re: [dpdk-dev] [PATCH v2 1/5] mk/icc: disable treatment of warnings as errors

2020-01-24 Thread Ferruh Yigit
On 1/23/2020 6:20 PM, Alexander Kozyrev wrote: > Remove -Werror-all flag in ICC configuration file to stop treating ICC > warnings as errors in DPDK due to many false positives. We are using > GCC and Clang as a benchmark for warnings anyway for simplification. > > Suggested-by: Thomas Monjalon >

[dpdk-dev] [PATCH v2 1/5] mk/icc: disable treatment of warnings as errors

2020-01-23 Thread Alexander Kozyrev
Remove -Werror-all flag in ICC configuration file to stop treating ICC warnings as errors in DPDK due to many false positives. We are using GCC and Clang as a benchmark for warnings anyway for simplification. Suggested-by: Thomas Monjalon Signed-off-by: Alexander Kozyrev Acked-by: Viacheslav Ovs