Re: [PATCH v2 1/5] eal: make compatible with instruction set updates for MSVC

2025-02-26 Thread Bruce Richardson
On Tue, Feb 25, 2025 at 05:06:52PM -0800, Andre Muezerie wrote: > After the instruction set updates for MSVC the error below popped up: > > ../lib/eal/common/rte_random.c(6): fatal error C1083: > Cannot open include file: 'x86intrin.h': No such file or directory > > The fix is to not include

[PATCH v2 1/5] eal: make compatible with instruction set updates for MSVC

2025-02-25 Thread Andre Muezerie
After the instruction set updates for MSVC the error below popped up: ../lib/eal/common/rte_random.c(6): fatal error C1083: Cannot open include file: 'x86intrin.h': No such file or directory The fix is to not include header x86intrin.h with MSVC. Signed-off-by: Andre Muezerie --- lib/eal/c