Hi, I was facing this error: "SSSE3 instruction set not enabled" while building dpdk.
Using the following commands: make config T=x86_64-native-linuxapp-gcc make install T=x86_64-native-linuxapp-gcc So, again I tried like this : make config T=x86_64-native-linuxapp-gcc EXTRA_CFLAGS="-msse4.2" make install T=x86_64-native-linuxapp-gcc EXTRA_CFLAGS="-msse4.2" Now, the build goes through. Is This method correct to follow ? Thanks