On 12/23/2018 12:43 PM, zhuangyan wrote: > Hello, > > Is there any way to disable the generation of “vmovdqa64” instruction during > the compilation of dpdk library on Intel Skylake CPU? > > My dev VM uses Intel Skylake CPU while my test machine uses Intel uses > Intel(R) Xeon(R) CPU E5-2630 v4 that is some sort of Intel Broadwell CPU. > > And my generated executable file of dpdk application contains "vmovdqa64" > instruction that is NOT supported in Intel Broadwell CPU so my dpdk > application fails to be run. > > I tried MACHINE_CFLAGS= -march=native/broadwell/ivybridge within > dpdk-stable-17.11.2/mk/machine/native/rte.vars.mk, however it does not work. > > Additionally, my gcc version is gcc (Debian 4.9.2-10+deb8u1) 4.9.2.
In config file, it is possible to select machine type, via "CONFIG_RTE_MACHINE=" config option. If it is "native", it will use all available CPU features host machine supports. For portability there is also "default" machine type, which will build for "corei7", this should work for your case. You can check available machine types at: 'mk/machine/*'