Re: [PATCH v3 2/7] drivers/bus: eliminate dependency on non-portable __SIZEOF_LONG__

2025-02-04 Thread Thomas Monjalon
06/12/2024 19:14, Andre Muezerie: > On Fri, Dec 06, 2024 at 04:41:16PM +, Konstantin Ananyev wrote: > > > > > > > Macro __SIZEOF_LONG__ is not standardized and MSVC does not define it. > > > > > Therefore the errors below are seen with MSVC: > > > > > > > > > > ../lib/mldev/mldev_utils_scalar.

Re: [PATCH v3 2/7] drivers/bus: eliminate dependency on non-portable __SIZEOF_LONG__

2024-12-06 Thread Andre Muezerie
On Fri, Dec 06, 2024 at 04:41:16PM +, Konstantin Ananyev wrote: > > > > > Macro __SIZEOF_LONG__ is not standardized and MSVC does not define it. > > > > Therefore the errors below are seen with MSVC: > > > > > > > > ../lib/mldev/mldev_utils_scalar.c(465): error C2065: > > > > '__SIZEOF_LON

RE: [PATCH v3 2/7] drivers/bus: eliminate dependency on non-portable __SIZEOF_LONG__

2024-12-06 Thread Konstantin Ananyev
> -Original Message- > From: Konstantin Ananyev > Sent: Friday, December 6, 2024 4:41 PM > To: Andre Muezerie > Cc: dev@dpdk.org > Subject: RE: [PATCH v3 2/7] drivers/bus: eliminate dependency on non-portable > __SIZEOF_LONG__ > > > > > > Ma

RE: [PATCH v3 2/7] drivers/bus: eliminate dependency on non-portable __SIZEOF_LONG__

2024-12-06 Thread Konstantin Ananyev
> > > Macro __SIZEOF_LONG__ is not standardized and MSVC does not define it. > > > Therefore the errors below are seen with MSVC: > > > > > > ../lib/mldev/mldev_utils_scalar.c(465): error C2065: > > > '__SIZEOF_LONG__': undeclared identifier > > > ../lib/mldev/mldev_utils_scalar.c(478): error

Re: [PATCH v3 2/7] drivers/bus: eliminate dependency on non-portable __SIZEOF_LONG__

2024-12-06 Thread Andre Muezerie
On Fri, Dec 06, 2024 at 12:22:42PM +, Konstantin Ananyev wrote: > > > > > > Macro __SIZEOF_LONG__ is not standardized and MSVC does not define it. > > Therefore the errors below are seen with MSVC: > > > > ../lib/mldev/mldev_utils_scalar.c(465): error C2065: > > '__SIZEOF_LONG__': undec

RE: [PATCH v3 2/7] drivers/bus: eliminate dependency on non-portable __SIZEOF_LONG__

2024-12-06 Thread Konstantin Ananyev
> > Macro __SIZEOF_LONG__ is not standardized and MSVC does not define it. > Therefore the errors below are seen with MSVC: > > ../lib/mldev/mldev_utils_scalar.c(465): error C2065: > '__SIZEOF_LONG__': undeclared identifier > ../lib/mldev/mldev_utils_scalar.c(478): error C2051: > case

[PATCH v3 2/7] drivers/bus: eliminate dependency on non-portable __SIZEOF_LONG__

2024-12-04 Thread Andre Muezerie
Macro __SIZEOF_LONG__ is not standardized and MSVC does not define it. Therefore the errors below are seen with MSVC: ../lib/mldev/mldev_utils_scalar.c(465): error C2065: '__SIZEOF_LONG__': undeclared identifier ../lib/mldev/mldev_utils_scalar.c(478): error C2051: case expression not const